Your IP : 52.15.254.112


Current Path : /home/church/
Upload File :
Current File : /home/church/church_edssnow.1618375710.sql

-- MySQL dump 10.13  Distrib 5.6.41-84.1, for Linux (x86_64)
--
-- Host: localhost    Database: church_edssnow
-- ------------------------------------------------------
-- Server version	5.6.41-84.1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_actionscheduler_actions`
--

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

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

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

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

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

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

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

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

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

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

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

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

DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL 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;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `wp_bookly_appointments`
--

DROP TABLE IF EXISTS `wp_bookly_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_appointments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `location_id` int(10) unsigned DEFAULT NULL,
  `staff_id` int(10) unsigned NOT NULL,
  `staff_any` tinyint(1) NOT NULL DEFAULT '0',
  `service_id` int(10) unsigned DEFAULT NULL,
  `custom_service_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `custom_service_price` decimal(10,2) DEFAULT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  `extras_duration` int(11) NOT NULL DEFAULT '0',
  `internal_note` text COLLATE utf8mb4_unicode_520_ci,
  `google_event_id` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `google_event_etag` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `outlook_event_id` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `outlook_event_change_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `outlook_event_series_id` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `online_meeting_provider` enum('zoom') COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `online_meeting_id` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `online_meeting_data` text COLLATE utf8mb4_unicode_520_ci,
  `created_from` enum('bookly','google','outlook') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'bookly',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `staff_id` (`staff_id`),
  KEY `service_id` (`service_id`),
  CONSTRAINT `wp_bookly_appointments_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_bookly_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `wp_bookly_appointments_ibfk_2` FOREIGN KEY (`service_id`) REFERENCES `wp_bookly_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_appointments`
--

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

--
-- Table structure for table `wp_bookly_categories`
--

DROP TABLE IF EXISTS `wp_bookly_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `position` int(11) NOT NULL DEFAULT '9999',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_categories`
--

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

--
-- Table structure for table `wp_bookly_customer_appointments`
--

DROP TABLE IF EXISTS `wp_bookly_customer_appointments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_customer_appointments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `series_id` int(10) unsigned DEFAULT NULL,
  `package_id` int(10) unsigned DEFAULT NULL,
  `customer_id` int(10) unsigned NOT NULL,
  `appointment_id` int(10) unsigned NOT NULL,
  `payment_id` int(10) unsigned DEFAULT NULL,
  `number_of_persons` int(10) unsigned NOT NULL DEFAULT '1',
  `units` int(10) unsigned NOT NULL DEFAULT '1',
  `notes` text COLLATE utf8mb4_unicode_520_ci,
  `extras` text COLLATE utf8mb4_unicode_520_ci,
  `extras_multiply_nop` tinyint(1) NOT NULL DEFAULT '1',
  `extras_consider_duration` tinyint(1) NOT NULL DEFAULT '1',
  `custom_fields` text COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'approved',
  `status_changed_at` datetime DEFAULT NULL,
  `token` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `time_zone` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `time_zone_offset` int(11) DEFAULT NULL,
  `rating` int(11) DEFAULT NULL,
  `rating_comment` text COLLATE utf8mb4_unicode_520_ci,
  `locale` varchar(8) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `collaborative_service_id` int(10) unsigned DEFAULT NULL,
  `collaborative_token` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `compound_service_id` int(10) unsigned DEFAULT NULL,
  `compound_token` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_from` enum('frontend','backend') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'frontend',
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `customer_id` (`customer_id`),
  KEY `appointment_id` (`appointment_id`),
  KEY `series_id` (`series_id`),
  KEY `payment_id` (`payment_id`),
  CONSTRAINT `wp_bookly_customer_appointments_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `wp_bookly_customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `wp_bookly_customer_appointments_ibfk_2` FOREIGN KEY (`appointment_id`) REFERENCES `wp_bookly_appointments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `wp_bookly_customer_appointments_ibfk_3` FOREIGN KEY (`series_id`) REFERENCES `wp_bookly_series` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `wp_bookly_customer_appointments_ibfk_4` FOREIGN KEY (`payment_id`) REFERENCES `wp_bookly_payments` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_customer_appointments`
--

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

--
-- Table structure for table `wp_bookly_customers`
--

DROP TABLE IF EXISTS `wp_bookly_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_customers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `wp_user_id` bigint(20) unsigned DEFAULT NULL,
  `facebook_id` bigint(20) unsigned DEFAULT NULL,
  `group_id` int(10) unsigned DEFAULT NULL,
  `full_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `phone` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `email` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `birthday` date DEFAULT NULL,
  `country` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `state` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `postcode` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `city` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `street` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `street_number` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `additional_address` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `notes` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `info_fields` text COLLATE utf8mb4_unicode_520_ci,
  `stripe_account` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_customers`
--

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

--
-- Table structure for table `wp_bookly_holidays`
--

DROP TABLE IF EXISTS `wp_bookly_holidays`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_holidays` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `staff_id` int(10) unsigned DEFAULT NULL,
  `parent_id` int(10) unsigned DEFAULT NULL,
  `date` date NOT NULL,
  `repeat_event` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `staff_id` (`staff_id`),
  CONSTRAINT `wp_bookly_holidays_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_bookly_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_holidays`
--

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

--
-- Table structure for table `wp_bookly_log`
--

DROP TABLE IF EXISTS `wp_bookly_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `action` enum('create','update','delete') COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `target` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `target_id` int(10) unsigned DEFAULT NULL,
  `author` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `details` text COLLATE utf8mb4_unicode_520_ci,
  `ref` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `comment` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_log`
--

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

--
-- Table structure for table `wp_bookly_messages`
--

DROP TABLE IF EXISTS `wp_bookly_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_messages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `message_id` int(10) unsigned NOT NULL,
  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `subject` text COLLATE utf8mb4_unicode_520_ci,
  `body` text COLLATE utf8mb4_unicode_520_ci,
  `seen` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_messages`
--

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

--
-- Table structure for table `wp_bookly_notifications`
--

DROP TABLE IF EXISTS `wp_bookly_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_notifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `gateway` enum('email','sms') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'email',
  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `active` tinyint(1) NOT NULL DEFAULT '0',
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `subject` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `message` text COLLATE utf8mb4_unicode_520_ci,
  `to_staff` tinyint(1) NOT NULL DEFAULT '0',
  `to_customer` tinyint(1) NOT NULL DEFAULT '0',
  `to_admin` tinyint(1) NOT NULL DEFAULT '0',
  `to_custom` tinyint(1) DEFAULT '0',
  `custom_recipients` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attach_ics` tinyint(1) NOT NULL DEFAULT '0',
  `attach_invoice` tinyint(1) NOT NULL DEFAULT '0',
  `settings` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_notifications`
--

LOCK TABLES `wp_bookly_notifications` WRITE;
/*!40000 ALTER TABLE `wp_bookly_notifications` DISABLE KEYS */;
INSERT INTO `wp_bookly_notifications` VALUES (1,'email','new_booking',1,'Notification to customer about approved appointment','Your appointment information','Dear {client_name}.\n\nThis is a confirmation that you have booked {service_name}.\n\nWe are waiting you at {company_address} on {appointment_date} at {appointment_time}.\n\nThank you for choosing our company.\n\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"approved\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(2,'email','new_booking',1,'Notification to staff member about approved appointment','New booking information','Hello.\n\nYou have a new booking.\n\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}',1,0,0,0,NULL,0,0,'{\"status\":\"approved\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(3,'email','ca_status_changed',1,'Notification to customer about cancelled appointment','Booking cancellation','Dear {client_name}.\n\nYou have cancelled your booking of {service_name} on {appointment_date} at {appointment_time}.\n\nThank you for choosing our company.\n\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"cancelled\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(4,'email','ca_status_changed',1,'Notification to staff member about cancelled appointment','Booking cancellation','Hello.\n\nThe following booking has been cancelled.\n\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}',1,0,0,0,NULL,0,0,'{\"status\":\"cancelled\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(5,'email','ca_status_changed',1,'Notification to customer about rejected appointment','Booking rejection','Dear {client_name}.\n\nYour booking of {service_name} on {appointment_date} at {appointment_time} has been rejected.\n\nReason: {cancellation_reason}\n\nThank you for choosing our company.\n\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"rejected\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(6,'email','ca_status_changed',1,'Notification to staff member about rejected appointment','Booking rejection','Hello.\n\nThe following booking has been rejected.\n\nReason: {cancellation_reason}\n\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}',1,0,0,0,NULL,0,0,'{\"status\":\"rejected\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(7,'sms','new_booking',1,'Notification to customer about approved appointment','','Dear {client_name}.\nThis is a confirmation that you have booked {service_name}.\nWe are waiting you at {company_address} on {appointment_date} at {appointment_time}.\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"approved\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(8,'sms','new_booking',1,'Notification to staff member about approved appointment','','Hello.\nYou have a new booking.\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}',1,0,0,0,NULL,0,0,'{\"status\":\"approved\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(9,'sms','ca_status_changed',1,'Notification to customer about cancelled appointment','','Dear {client_name}.\nYou have cancelled your booking of {service_name} on {appointment_date} at {appointment_time}.\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"cancelled\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(10,'sms','ca_status_changed',1,'Notification to staff member about cancelled appointment','','Hello.\nThe following booking has been cancelled.\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}',1,0,0,0,NULL,0,0,'{\"status\":\"cancelled\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(11,'sms','ca_status_changed',1,'Notification to customer about rejected appointment','','Dear {client_name}.\nYour booking of {service_name} on {appointment_date} at {appointment_time} has been rejected.\nReason: {cancellation_reason}\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"rejected\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(12,'sms','ca_status_changed',1,'Notification to staff member about rejected appointment','','Hello.\nThe following booking has been rejected.\nReason: {cancellation_reason}\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}',1,0,0,0,NULL,0,0,'{\"status\":\"rejected\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":9,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(13,'sms','appointment_reminder',0,'Evening reminder to customer about next day appointment (requires cron setup)','','Dear {client_name}.\nWe would like to remind you that you have booked {service_name} tomorrow at {appointment_time}. We are waiting for you at {company_address}.\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"any\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":1,\"perform\":\"before\",\"at_hour\":18,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":-24}'),(14,'sms','appointment_reminder',0,'Follow-up message in the same day after appointment (requires cron setup)','','Dear {client_name}.\nThank you for choosing {company_name}. We hope you were satisfied with your {service_name}.\nThank you and we look forward to seeing you again soon.\n{company_name}\n{company_phone}\n{company_website}',0,1,0,0,NULL,0,0,'{\"status\":\"any\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":21,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":0}'),(15,'sms','staff_day_agenda',0,'Evening notification with the next day agenda to staff member (requires cron setup)','','Hello.\nYour agenda for tomorrow is:\n{next_day_agenda}',1,0,0,0,NULL,0,0,'{\"status\":\"any\",\"option\":2,\"services\":{\"any\":\"any\",\"ids\":[]},\"offset_hours\":2,\"perform\":\"before\",\"at_hour\":18,\"before_at_hour\":18,\"offset_before_hours\":-24,\"offset_bidirectional_hours\":-24}');
/*!40000 ALTER TABLE `wp_bookly_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bookly_payments`
--

DROP TABLE IF EXISTS `wp_bookly_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_payments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `coupon_id` int(10) unsigned DEFAULT NULL,
  `type` enum('local','free','paypal','authorize_net','stripe','2checkout','payu_biz','payu_latam','payson','mollie','woocommerce','cloud_stripe') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'local',
  `total` decimal(10,2) NOT NULL DEFAULT '0.00',
  `tax` decimal(10,2) NOT NULL DEFAULT '0.00',
  `paid` decimal(10,2) NOT NULL DEFAULT '0.00',
  `paid_type` enum('in_full','deposit') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'in_full',
  `gateway_price_correction` decimal(10,2) DEFAULT '0.00',
  `status` enum('pending','completed','rejected') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'completed',
  `token` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `details` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_payments`
--

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

--
-- Table structure for table `wp_bookly_schedule_item_breaks`
--

DROP TABLE IF EXISTS `wp_bookly_schedule_item_breaks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_schedule_item_breaks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `staff_schedule_item_id` int(10) unsigned NOT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `staff_schedule_item_id` (`staff_schedule_item_id`),
  CONSTRAINT `wp_bookly_schedule_item_breaks_ibfk_1` FOREIGN KEY (`staff_schedule_item_id`) REFERENCES `wp_bookly_staff_schedule_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_schedule_item_breaks`
--

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

--
-- Table structure for table `wp_bookly_sent_notifications`
--

DROP TABLE IF EXISTS `wp_bookly_sent_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_sent_notifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ref_id` int(10) unsigned NOT NULL,
  `notification_id` int(10) unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ref_id_idx` (`ref_id`),
  KEY `notification_id` (`notification_id`),
  CONSTRAINT `wp_bookly_sent_notifications_ibfk_1` FOREIGN KEY (`notification_id`) REFERENCES `wp_bookly_notifications` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_sent_notifications`
--

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

--
-- Table structure for table `wp_bookly_series`
--

DROP TABLE IF EXISTS `wp_bookly_series`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_series` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `repeat` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `token` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_series`
--

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

--
-- Table structure for table `wp_bookly_services`
--

DROP TABLE IF EXISTS `wp_bookly_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_services` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(10) unsigned DEFAULT NULL,
  `type` enum('simple','collaborative','compound','package') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'simple',
  `title` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `duration` int(11) NOT NULL DEFAULT '900',
  `slot_length` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'default',
  `price` decimal(10,2) NOT NULL DEFAULT '0.00',
  `color` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '#FFFFFF',
  `deposit` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '100%',
  `capacity_min` int(11) NOT NULL DEFAULT '1',
  `capacity_max` int(11) NOT NULL DEFAULT '1',
  `one_booking_per_slot` tinyint(1) NOT NULL DEFAULT '0',
  `padding_left` int(11) NOT NULL DEFAULT '0',
  `padding_right` int(11) NOT NULL DEFAULT '0',
  `info` text COLLATE utf8mb4_unicode_520_ci,
  `start_time_info` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `end_time_info` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `same_staff_for_subservices` tinyint(1) NOT NULL DEFAULT '0',
  `units_min` int(10) unsigned NOT NULL DEFAULT '1',
  `units_max` int(10) unsigned NOT NULL DEFAULT '1',
  `package_life_time` int(11) DEFAULT NULL,
  `package_size` int(11) DEFAULT NULL,
  `package_unassigned` tinyint(1) NOT NULL DEFAULT '0',
  `appointments_limit` int(11) DEFAULT NULL,
  `limit_period` enum('off','day','week','month','year','upcoming','calendar_day','calendar_week','calendar_month','calendar_year') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'off',
  `staff_preference` enum('order','least_occupied','most_occupied','least_occupied_for_period','most_occupied_for_period','least_expensive','most_expensive') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'most_expensive',
  `staff_preference_settings` text COLLATE utf8mb4_unicode_520_ci,
  `recurrence_enabled` tinyint(1) NOT NULL DEFAULT '1',
  `recurrence_frequencies` set('daily','weekly','biweekly','monthly') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'daily,weekly,biweekly,monthly',
  `time_requirements` enum('required','optional','off') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'required',
  `collaborative_equal_duration` tinyint(1) NOT NULL DEFAULT '0',
  `online_meetings` enum('off','zoom') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'off',
  `visibility` enum('public','private','group') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'public',
  `position` int(11) NOT NULL DEFAULT '9999',
  PRIMARY KEY (`id`),
  KEY `category_id` (`category_id`),
  CONSTRAINT `wp_bookly_services_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `wp_bookly_categories` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_services`
--

LOCK TABLES `wp_bookly_services` WRITE;
/*!40000 ALTER TABLE `wp_bookly_services` DISABLE KEYS */;
INSERT INTO `wp_bookly_services` VALUES (2,NULL,'simple','Eco Solutions Free Consultation',10800,'default',0.00,'#56269C','100%',1,1,0,0,0,'','','',0,1,1,NULL,NULL,0,NULL,'off','most_expensive','{}',1,'daily,weekly,biweekly,monthly','required',0,'off','public',2);
/*!40000 ALTER TABLE `wp_bookly_services` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bookly_shop`
--

DROP TABLE IF EXISTS `wp_bookly_shop`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_shop` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_id` int(10) unsigned NOT NULL,
  `type` enum('plugin','bundle') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'plugin',
  `highlighted` tinyint(1) NOT NULL DEFAULT '0',
  `priority` int(10) unsigned DEFAULT '0',
  `demo_url` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `price` decimal(10,2) NOT NULL,
  `sales` int(10) unsigned NOT NULL,
  `rating` decimal(10,2) NOT NULL,
  `reviews` int(10) unsigned NOT NULL,
  `published` datetime NOT NULL,
  `seen` tinyint(1) NOT NULL DEFAULT '0',
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_shop`
--

LOCK TABLES `wp_bookly_shop` WRITE;
/*!40000 ALTER TABLE `wp_bookly_shop` DISABLE KEYS */;
INSERT INTO `wp_bookly_shop` VALUES (1,7226091,'plugin',1,100,NULL,'Bookly Pro','bookly-addon-pro','Bring appointment scheduling process to the next level with Bookly Pro add-on.  Pro add-on turns Bookly plugin into the professional appointment management system. Unlock Advanced Customer management, Service provider management, Services management, Email and SMS notifications, Booking management capabilities. Connect payment gateways and modify Pro version with other add-ons available only with Bookly Pro and more.','https://codecanyon.net/item/bookly-booking-plugin-responsive-appointment-booking-and-scheduling/7226091','https://s3.envato.com/files/276918414/bookly-icon-(1)%20(3).png',89.00,36652,4.54,1024,'2014-04-12 17:14:52',1,'2021-04-14 02:42:42'),(2,13903524,'plugin',0,0,NULL,'Bookly Multisite (Add-on)','bookly-addon-multisite','Do you need to administrate Booky on multiple websites? This add-on enables Bookly to become a Multisite ready plugin. You need to buy an additional Regular License for Bookly Pro and every installed add-on for each domain name that you use.','https://codecanyon.net/item/bookly-multisite-addon/13903524','https://s3.envato.com/files/257314580/14multisite.png',49.00,604,5.00,7,'2015-12-04 16:38:03',1,'2021-04-14 02:42:42'),(3,15552320,'plugin',0,0,NULL,'Bookly Service Extras (Add-on)','bookly-addon-service-extras','Increase the average check for every client visit with Service Extras add-on. Let your customers order extra items when they schedule an appointment with you or book your service. It adds one more step into the booking form and allows your customers to pick extras they would like to order as an addition to the service booking, see the price of extras, name, image, and total cost of the selected items.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-service-extras-addon/15552320','https://s3.envato.com/files/275715191/bookly_extras_80x80.jpg',49.00,2518,4.41,32,'2016-04-01 15:29:11',1,'2021-04-14 02:42:42'),(4,17328208,'plugin',0,0,NULL,'Bookly Locations (Add-on)','bookly-addon-locations','Do you offer your services in more than one location? Try Bookly Locations add-on to manage the service booking process between various locations. Let your customers pick the location, where they would like to get the service and associate the staff members with those locations.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-locations-addon/17328208','https://s3.envato.com/files/257314201/3locations.png',39.00,2169,4.30,30,'2016-08-03 17:49:31',1,'2021-04-14 02:42:42'),(5,17367838,'plugin',0,0,NULL,'Bookly Chain Appointments (Add-on)','bookly-addon-chain-appointments','Do you offer services which can be combined and provided during a single client visit by the same or different staff members? Let your clients book several services for a single visit with the Chain Appointments add-on. The clients will be able to choose multiple services from different providers at the first step of the booking process.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-chain-appointments-addon/17367838','https://s3.envato.com/files/257314361/11chain.png',29.00,979,4.80,5,'2016-08-09 17:40:29',1,'2021-04-14 02:42:42'),(6,17457141,'plugin',0,0,NULL,'Bookly Multiply Appointments (Add-on)','bookly-addon-multiply-appointments','Do you provide fixed-time services, which your clients can book for example for an hour or 15 minutes? Boost your sales with Bookly Multiply Appointments add-on by providing an option to book the same service several times in a row.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-multiply-appointments-addon/17457141','https://s3.envato.com/files/277980955/icon_80x80.png',29.00,666,0.00,2,'2016-08-16 16:02:12',1,'2021-04-14 02:42:42'),(7,17956131,'plugin',0,0,NULL,'Bookly Deposit Payments (Add-on)','bookly-addon-deposit-payments','Would you like to reduce the number of no-shows? Or maybe you need to buy something before the clients\' visit? With Bookly Deposit Payments add-on, you can request full or partial pre-payment during the service booking process.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-deposit-payments-addon/17956131','https://s3.envato.com/files/257314254/7deposit.png',39.00,1297,4.57,7,'2016-09-22 18:11:00',1,'2021-04-14 02:42:42'),(8,18611122,'plugin',0,0,NULL,'Bookly Special Days (Add-on)','bookly-addon-special-days','Customize the schedule of your employees during the holiday season or any other occasion, without changing your regular schedule. With this add-on, you can add days with long or short hours or even the day when you provide service for 24 hours. Bookly Special Days add-on enables you to modify the schedule of each staff member in your organization.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-special-days-addon/18611122','https://s3.envato.com/files/257314246/6specialdays.png',39.00,1751,4.27,11,'2016-11-07 01:25:43',1,'2021-04-14 02:42:42'),(9,18704535,'plugin',0,0,NULL,'Bookly Special Hours (Add-on)','bookly-addon-special-hours','Would you like to provide a discount during happy hours or raise service price during busy hours? You can do it with Bookly Special Hours add-on. With full control of the daily schedule, you can adjust the price to maximize revenues or reduce workload.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-special-hours-addon/18704535','https://s3.envato.com/files/276664014/icon_80x80.jpg',29.00,434,4.20,5,'2016-11-09 01:22:54',1,'2021-04-14 02:42:42'),(10,18874038,'plugin',0,0,NULL,'Bookly Service Schedule (Add-on)','bookly-addon-service-schedule','Do you have services with a specific schedule which must be aligned with the default schedule of your employees? With Bookly Service Schedule add-on, you can set hours during each day of the week when your clients can book this service taking into consideration the staff members availability.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-service-schedule-addon/18874038','https://s3.envato.com/files/257314213/5serviceschedule.png',29.00,1868,4.40,10,'2016-11-22 05:03:19',1,'2021-04-14 02:42:42'),(11,19497634,'plugin',0,0,NULL,'Bookly Recurring Appointments (Add-on)','bookly-addon-recurring-appointments','Do you provide a service which may require a series of visits, like therapy, massage, tutoring and more? With Bookly Recurring Appointments, your client can book the service set upfront. Must-have for businesses, which provide service sets.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-recurring-appointments-addon/19497634','https://s3.envato.com/files/257314299/10recurring.png',39.00,1277,3.67,12,'2017-02-23 17:42:00',1,'2021-04-14 02:42:42'),(12,19617518,'plugin',0,0,NULL,'Bookly PayPal Payments Standard (Add-on)','bookly-addon-paypal-payments-standard','Do you have PayPal Business or PayPal Premier account and would like to provide one of the most popular online payment options for your clients? With Bookly PayPal Payments Standard add-on clients can pay directly via credit card or by logging in to their PayPal account – all processed by PayPal.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-paypal-payments-standard-addon/19617518','https://s3.envato.com/files/257314391/13paypalstandard.png',29.00,1202,5.00,6,'2017-03-22 04:29:25',1,'2021-04-14 02:42:42'),(13,20005540,'plugin',0,0,NULL,'Bookly Staff Cabinet (Add-on)','bookly-addon-staff-cabinet','You can manage Bookly in the WordPress admin area of your website. Many of your employees may also need access to Bookly. To avoid any complications and limit the access to the website admin area, you can use Bookly Staff Cabinet, where your employees can: view the calendar, add and manage appointments, view and update personal details and more.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-staff-cabinet-addon/20005540','https://s3.envato.com/files/257314313/12staffcabinet.png',39.00,1514,3.87,15,'2017-05-26 16:11:36',1,'2021-04-14 02:42:42'),(14,20685954,'plugin',0,0,NULL,'Bookly PayU Latam (Add-on)','bookly-addon-payu-latam','Accept payments online to reduce the funnel friction and boost your sales. PayU Latam is an international payment gateway provider, which also supports the most popular payment options in Latin America and is a perfect fit for businesses, which provide services in the LatAm market.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-payu-latam-addon/20685954','https://s3.envato.com/files/257315044/34payulatam.jpg',29.00,82,0.00,2,'2017-10-04 22:22:08',1,'2021-04-14 02:42:42'),(15,20917406,'plugin',0,0,NULL,'Bookly Waiting List (Add-on)','bookly-addon-waiting-list','Do you lose customers because you are overbooked? Try Bookly Waiting List add-on to collect warm leads and maximize your profits. When you are fully booked, the customer will be able to join the waiting list. Service provider will get an automatic notification when the free slot appears.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-waiting-list-addon/20917406','https://s3.envato.com/files/257314909/28waitinglist.jpg',29.00,293,0.00,1,'2017-11-09 17:58:26',1,'2021-04-14 02:42:42'),(16,20952783,'plugin',0,0,NULL,'Bookly Packages (Add-on)','bookly-addon-packages','Do you have customers who purchase your services regularly? You can increase their loyalty to your company and boost your sales by providing package deals at a discounted price with Bookly Packages add-on.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-packages-addon/20952783','https://s3.envato.com/files/277560972/icon_80x80.jpg',29.00,490,3.00,4,'2017-11-14 18:45:26',1,'2021-04-14 02:42:42'),(17,21113698,'plugin',0,0,NULL,'Bookly 2Checkout (Add-on)','bookly-addon-2checkout','Accept payments online to reduce the funnel friction and boost your sales. 2Checkout enables merchants to accept mobile and online payments from buyers worldwide. Seamless, safe, reliable payment processing regardless of where you are on the map.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-2checkout-addon/21113698','https://s3.envato.com/files/257315086/35_2checkout(1).jpg',29.00,28,0.00,0,'2017-12-12 10:30:34',1,'2021-04-14 02:42:42'),(18,21113750,'plugin',0,0,NULL,'Bookly Authorize.Net (Add-on)','bookly-addon-authorize-net','Accept payments online to reduce the funnel friction and boost your sales. Authorize.Net is a US-based payment gateway, which allows merchants to accept various payment types like: Visa, MasterCard, Discover, American Express, JCB, PayPal, Visa Checkout, Apple Pay, Google Pay, E-check.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-authorizenet-addon/21113750','https://s3.envato.com/files/257315021/33authorize.jpg',29.00,142,0.00,0,'2017-12-12 10:30:24',1,'2021-04-14 02:42:42'),(19,21113860,'plugin',0,0,NULL,'Bookly Coupons (Add-on)','bookly-addon-coupons','Provide your clients with discount coupons to boost your sales, improve the conversion rate for less popular services, and increase customer loyalty. With the Bookly Coupons add-on enabled, your clients will be able to apply a coupon code at the checkout and get the service at a discounted price. You can easily create, manage and keep track of all promotional codes directly in Bookly.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-coupons-addon/21113860','https://s3.envato.com/files/257314530/17coupons.jpg',39.00,1439,4.20,5,'2017-12-12 10:39:37',1,'2021-04-14 02:42:42'),(20,21113970,'plugin',0,0,NULL,'Bookly Custom Fields (Add-on)','bookly-addon-custom-fields','Do you need to know specific info about your customer before they visit you? Do you want to provide a personalized experience for your customers?\r\nWith Custom Fields add-on, you can ask for more details during the booking process to save time and provide better client experience during the visit.\r\n\r\nImportant: This add-on requires the Bookly PRO to be installed and activated.\r\n','https://codecanyon.net/item/bookly-custom-fields-addon/21113970','https://s3.envato.com/files/278250393/icon_80x80.jpg',49.00,3394,5.00,12,'2017-12-12 10:40:39',1,'2021-04-14 02:42:42'),(21,21114042,'plugin',0,0,NULL,'Bookly Mollie (Add-on)','bookly-addon-mollie','Accept payments online to reduce the funnel friction and boost your sales. Mollie is a Payment Service Provider (PSP) which allows you to process such payment methods as iDEAL, credit card, Bancontact/Mister Cash, PayPal, SCT, SDD, and others.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-mollie-addon/21114042','https://s3.envato.com/files/257314852/25mollie.jpg',34.00,531,0.00,2,'2017-12-12 10:43:25',1,'2021-04-14 02:42:42'),(22,21114096,'plugin',0,0,NULL,'Bookly Payson (Add-on)','bookly-addon-payson','Accept payments online to reduce the funnel friction and boost your sales. Payson is one of Sweden’s leading companies for payments online. It provides both e-traders and private individuals with access to secure online payments.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-payson-addon/21114096','https://s3.envato.com/files/257315118/37payson.jpg',29.00,13,0.00,1,'2017-12-12 10:44:08',1,'2021-04-14 02:42:42'),(23,21114146,'plugin',0,0,NULL,'Bookly Stripe (Add-on)','bookly-addon-stripe','Accept payments online to reduce the funnel friction and boost your sales. Stripe operates in more than 25 countries and provides various options to accept payments online. One of the most powerful solutions to cover your payments needs.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-stripe-addon/21114146','https://s3.envato.com/files/257314285/9stripe.jpg',39.00,2162,4.60,10,'2017-12-12 10:46:42',1,'2021-04-14 02:42:42'),(24,21344225,'plugin',0,0,NULL,'Bookly Group Booking (Add-on)','bookly-addon-group-booking','Do you provide services for groups, like yoga or fitness class, group tutoring, or maybe a guided tour? With Bookly Group Booking add-on, you can easily set the capacity for each service you provide, let your customers specify the number of people during the booking and more.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-group-booking-addon/21344225','https://s3.envato.com/files/257314273/8groupbooking.jpg',39.00,2441,5.00,6,'2018-02-01 01:33:45',1,'2021-04-14 02:42:42'),(25,21344290,'plugin',0,0,NULL,'Bookly Customer Groups (Add-on)','bookly-addon-customer-groups','Do you have different types of customers? Bookly Customer Groups add-on enables you to create and manage Customer Groups. With this add-on, you can arrange your customers in different categories and set the rules for booking process, pricing and more.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-customer-groups-addon/21344290','https://s3.envato.com/files/257314959/31customergroups.jpg',29.00,285,0.00,0,'2018-02-01 02:03:48',1,'2021-04-14 02:42:42'),(26,21344354,'plugin',0,0,NULL,'Bookly Files (Add-on)','bookly-addon-files','Do you require documents or any other information before the customer can book your service? Let your clients attach files during the booking process with Bookly Files add-on. All materials added by your customers will be available for review in booking details.\r\n\r\nImportant: This add-on requires the Bookly PRO and Bookly Custom Fields (Add-on) installed and activated.','https://codecanyon.net/item/bookly-files-addon/21344354','https://s3.envato.com/files/257314861/27files.jpg',29.00,469,3.83,6,'2018-02-01 02:07:58',1,'2021-04-14 02:42:42'),(27,21574371,'plugin',0,0,NULL,'Bookly Compound Services (Add-on)','bookly-addon-compound-services','Do you have services which can be combined into one service at a higher price? For example, if you provide web design, coding, content creation services you could combine them into the website or app development service which includes services mentioned in the example and involves several employees in it. \r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-compound-services-addon/21574371','https://s3.envato.com/files/257314987/30compound.jpg',29.00,182,0.00,1,'2018-03-13 06:08:47',1,'2021-04-14 02:42:42'),(28,21574466,'plugin',0,0,NULL,'Bookly Customer Information (Add-on)','bookly-addon-customer-information','Know your customer better with Bookly Customer Information add-on. Add custom fields to the booking form to gather additional info about your customer. The extended user profile will allow you to personalize your marketing activities in the future.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-customer-information-addon/21574466','https://s3.envato.com/files/279832345/icon_80x80.jpg',29.00,947,5.00,5,'2018-03-13 06:10:12',1,'2021-04-14 02:42:42'),(29,21574566,'plugin',0,0,NULL,'Bookly Ratings (Add-on)','bookly-addon-ratings','Do you want to improve your services and become more client-oriented? With Bookly Ratings add-on, you can evaluate your staff members and services you provide. Encourage your customers to rate the services they receive to keep up with professional standards and always meet the client’s expectations.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-ratings-addon/21574566','https://s3.envato.com/files/257315009/32ratings.jpg',29.00,252,0.00,2,'2018-03-13 06:19:21',1,'2021-04-14 02:42:42'),(30,21841764,'plugin',0,0,NULL,'Bookly Cart (Add-on)','bookly-addon-cart','Do you want to boost your online sales even more? With Bookly Cart add-on, your customers can add multiple service bookings to the cart. It simplifies the buying process and motivates to purchase more. You can customize columns and display the cart summary data the way you want.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-cart-addon/21841764','https://s3.envato.com/files/257314676/21cart.jpg',29.00,992,4.00,7,'2018-04-29 02:25:40',1,'2021-04-14 02:42:42'),(31,21841828,'plugin',0,0,NULL,'Bookly Taxes (Add-on)','bookly-addon-taxes','Bookly Taxes add-on will let you set up and include taxes in the service price. You’ll be able to define different tax rates and apply them to all or only to selected services. Based on your settings, Bookly will calculate and display a total price with taxes that were applied.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-taxes-addon/21841828','https://s3.envato.com/files/257314926/29taxes.jpg',39.00,386,0.00,1,'2018-04-29 02:29:54',1,'2021-04-14 02:42:42'),(32,21841856,'plugin',0,0,NULL,'Bookly Invoices (Add-on)','bookly-addon-invoices','Do you need need to invoice your clients without routine? With Bookly Invoices add-on, you can automatically issue invoices to your clients after your service is booked. Send a payment request when appointments are booked, approved, or received, and get paid within a specified period. Take advantage of the automatic online invoicing and let your clients pay for your services quickly and easily.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.\r\n','https://codecanyon.net/item/bookly-invoices-addon/21841856','https://s3.envato.com/files/276228740/icon_80x80.jpg',39.00,686,0.00,1,'2018-04-29 02:30:22',1,'2021-04-14 02:42:42'),(33,21841871,'plugin',0,0,NULL,'Bookly Google Maps Address (Add-on)','bookly-addon-google-maps-address','Would you like to reduce Bookly form fill-in time and increase the conversion rate? Bookly Google Maps Address add-on simplifies the process of address data entry allowing you to use an autocomplete service. It helps to minimize the funnel friction, which leads to a better conversion rate and more sales.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-google-maps-address-addon/21841871','https://s3.envato.com/files/257314833/26googlemaps.jpg',29.00,351,4.67,3,'2018-04-29 02:45:11',1,'2021-04-14 02:42:42'),(34,22060579,'plugin',0,0,NULL,'Bookly Advanced Google Calendar (Add-on)','bookly-addon-advanced-google-calendar','Are you used to Google Сalendar and want to leverage its capabilities together with Bookly? With  Bookly Advanced Google Calendar add-on, you get two-way synchronization between Bookly Calendar and Google Calendar so that you’ll always be able to see and manage all appointments in both calendars.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-advanced-google-calendar-addon/22060579','https://s3.envato.com/files/257314406/15googlecalendar.jpg',49.00,1906,4.44,9,'2018-06-06 04:37:53',1,'2021-04-14 02:42:42'),(35,22060627,'plugin',0,0,NULL,'Bookly Customer Cabinet (Add-on)','bookly-addon-customer-cabinet','Do you need even more flexibility and let your customers manage their existing appointments and profile info? With Bookly Customer Cabinet add-on, Bookly becomes fully GDPR compliant and allows your users to control their data and appointments on your website in their personal user account. \r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-customer-cabinet-addon/22060627','https://s3.envato.com/files/257314653/19customercabinet.jpg',29.00,1178,3.89,9,'2018-06-06 04:39:24',1,'2021-04-14 02:42:42'),(36,22060703,'plugin',0,0,NULL,'Bookly Custom Duration (Add-on)','bookly-addon-custom-duration','Do you sell services which may have a flexible duration like tutoring, training, consulting, etc.? With Bookly Custom Duration add-on, your customers can define the length of the appointment. The price will be calculated accordingly.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-custom-duration-addon/22060703','https://s3.envato.com/files/277098076/icon_80x80.jpg',29.00,856,5.00,4,'2018-06-06 04:42:30',1,'2021-04-14 02:42:42'),(37,22060797,'plugin',0,0,NULL,'Bookly PayUbiz (Add-on)','bookly-addon-payu-biz','Accept payments online to reduce the funnel friction and boost your sales. PayUbiz is a payment gateway provider, which also supports most popular payment options in India and is a perfect fit for businesses, which provide services in the Indian market.\r\n\r\nImportant: This add-on requires the Bookly PRO installed and activated.','https://codecanyon.net/item/bookly-payubiz-addon/22060797','https://s3.envato.com/files/257315098/36payubiz.jpg',29.00,16,0.00,1,'2018-06-06 04:52:32',1,'2021-04-14 02:42:42'),(38,22999600,'plugin',0,0,NULL,'Bookly Tasks (Add-on) ','bookly-addon-tasks','Bookly Tasks add-on allows you and your customers to create bookings without choosing date and time.','https://codecanyon.net/item/bookly-tasks-addon/22999600','https://s3.envato.com/files/257552116/icon_80x80.jpg',29.00,276,0.00,1,'2018-12-12 00:17:51',1,'2021-04-14 02:42:42'),(39,22999632,'plugin',0,0,NULL,'Bookly Collaborative Services (Add-on)','bookly-addon-collaborative-services','Bookly Collaborative Services add-on allows you to create services that require simultaneous participation of several staff members or staff member and shared resources necessary for the service performance.','https://codecanyon.net/item/bookly-collaborative-services-addon/22999632','https://s3.envato.com/files/257552412/icon_80x80.jpg',39.00,373,0.00,0,'2018-12-12 00:22:29',1,'2021-04-14 02:42:42'),(40,23324001,'plugin',0,0,NULL,'Bookly Custom Statuses (Add-on)','bookly-addon-custom-statuses','Bookly Custom Statuses add-on allows you to create and use additional statuses for the appointment.','https://codecanyon.net/item/bookly-custom-statuses-addon/23324001','https://s3.envato.com/files/260657848/icon_80x80.jpg',29.00,287,0.00,2,'2019-02-18 20:10:01',1,'2021-04-14 02:42:42'),(41,23350952,'plugin',0,0,NULL,'Bookly Outlook Calendar (Add-on)','bookly-addon-outlook-calendar','Bookly Outlook Calendar add-on allows you to get a full two-way synchronization between Bookly Calendar and Outlook Calendar.','https://codecanyon.net/item/bookly-outlook-calendar-addon/23350952','https://s3.envato.com/files/260900000/icon_80x80(1).jpg',49.00,500,0.00,2,'2019-02-21 23:33:34',1,'2021-04-14 02:42:42'),(42,24219988,'plugin',0,0,NULL,'Bookly PayPal Checkout (Add-on)','bookly-addon-paypal-checkout','Bookly PayPal Checkout add-on allows your client to use PayPal Checkout payment method.','https://codecanyon.net/item/bookly-paypal-checkout-addon/24219988','https://s3.envato.com/files/268224387/icon_80x80.jpg',29.00,350,0.00,0,'2019-07-30 18:31:46',1,'2021-04-14 02:42:42'),(43,29936495,'plugin',0,0,NULL,'Bookly Discounts (Add-on)','bookly-addon-discounts','Bookly Discounts add-on allows you to set up conditional discounts that will be applied during checkout if the booking details match requirements set by you.','https://codecanyon.net/item/bookly-discounts-addon/29936495','https://s3.envato.com/files/317556319/icon_80x80.jpg',29.00,48,0.00,0,'2021-01-05 01:18:25',1,'2021-04-14 02:42:42');
/*!40000 ALTER TABLE `wp_bookly_shop` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_bookly_staff`
--

DROP TABLE IF EXISTS `wp_bookly_staff`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_staff` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(10) unsigned DEFAULT NULL,
  `wp_user_id` bigint(20) unsigned DEFAULT NULL,
  `attachment_id` int(10) unsigned DEFAULT NULL,
  `full_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `phone` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `time_zone` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `info` text COLLATE utf8mb4_unicode_520_ci,
  `working_time_limit` int(10) unsigned DEFAULT NULL,
  `visibility` enum('public','private','archive') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'public',
  `position` int(11) NOT NULL DEFAULT '9999',
  `google_data` text COLLATE utf8mb4_unicode_520_ci,
  `outlook_data` text COLLATE utf8mb4_unicode_520_ci,
  `zoom_jwt_api_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `zoom_jwt_api_secret` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `zoom_authentication` enum('default','jwt','oauth') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'default',
  `zoom_oauth_token` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_staff`
--

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

--
-- Table structure for table `wp_bookly_staff_schedule_items`
--

DROP TABLE IF EXISTS `wp_bookly_staff_schedule_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_staff_schedule_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `staff_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `day_index` int(10) unsigned NOT NULL,
  `start_time` time DEFAULT NULL,
  `end_time` time DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_ids_idx` (`staff_id`,`day_index`,`location_id`),
  CONSTRAINT `wp_bookly_staff_schedule_items_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_bookly_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_staff_schedule_items`
--

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

--
-- Table structure for table `wp_bookly_staff_services`
--

DROP TABLE IF EXISTS `wp_bookly_staff_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_staff_services` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `staff_id` int(10) unsigned NOT NULL,
  `service_id` int(10) unsigned NOT NULL,
  `location_id` int(10) unsigned DEFAULT NULL,
  `price` decimal(10,2) NOT NULL DEFAULT '0.00',
  `deposit` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '100%',
  `capacity_min` int(11) NOT NULL DEFAULT '1',
  `capacity_max` int(11) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_ids_idx` (`staff_id`,`service_id`,`location_id`),
  KEY `service_id` (`service_id`),
  CONSTRAINT `wp_bookly_staff_services_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_bookly_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `wp_bookly_staff_services_ibfk_2` FOREIGN KEY (`service_id`) REFERENCES `wp_bookly_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_staff_services`
--

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

--
-- Table structure for table `wp_bookly_stats`
--

DROP TABLE IF EXISTS `wp_bookly_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_stats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_stats`
--

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

--
-- Table structure for table `wp_bookly_sub_services`
--

DROP TABLE IF EXISTS `wp_bookly_sub_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_bookly_sub_services` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `type` enum('service','spare_time') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'service',
  `service_id` int(10) unsigned NOT NULL,
  `sub_service_id` int(10) unsigned DEFAULT NULL,
  `duration` int(11) DEFAULT NULL,
  `position` int(11) NOT NULL DEFAULT '9999',
  PRIMARY KEY (`id`),
  KEY `service_id` (`service_id`),
  KEY `sub_service_id` (`sub_service_id`),
  CONSTRAINT `wp_bookly_sub_services_ibfk_1` FOREIGN KEY (`service_id`) REFERENCES `wp_bookly_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT `wp_bookly_sub_services_ibfk_2` FOREIGN KEY (`sub_service_id`) REFERENCES `wp_bookly_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_bookly_sub_services`
--

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

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

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

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

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_commentmeta` VALUES (1,12,'is_customer_note','1'),(2,13,'is_customer_note','1'),(3,15,'is_customer_note','1');
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (8,389,'eessel','ekow@esselwebdesign.com','','','2021-02-16 22:54:55','2021-02-16 22:54:55','Thanks for your business!',0,'1','WooCommerce','order_note',0,0),(9,389,'eessel','ekow@esselwebdesign.com','','','2021-02-16 22:55:06','2021-02-16 22:55:06','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0),(10,389,'WooCommerce','woocommerce@edssnow.com','','','2021-02-16 22:56:11','2021-02-16 22:56:11','A payment of <span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#36;</span>1.00</bdi></span> was <strong>successfully charged</strong> using WooCommerce Payments (<code>pi_1ILcSi2EFiGxn5AOSxeJeAbs</code>).',0,'1','WooCommerce','order_note',0,0),(11,389,'WooCommerce','woocommerce@edssnow.com','','','2021-02-16 22:56:11','2021-02-16 22:56:11','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(12,390,'eessel','ekow@esselwebdesign.com','','','2021-02-16 23:30:58','2021-02-16 23:30:58','Thank you for your business!',0,'1','WooCommerce','order_note',0,0),(13,390,'eessel','ekow@esselwebdesign.com','','','2021-02-16 23:32:04','2021-02-16 23:32:04','You\'re a great customer',0,'1','WooCommerce','order_note',0,0),(14,390,'eessel','ekow@esselwebdesign.com','','','2021-02-16 23:32:21','2021-02-16 23:32:21','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0),(15,391,'eessel','ekow@esselwebdesign.com','','','2021-02-16 23:34:52','2021-02-16 23:34:52','Thanks for your business, Ekow!',0,'1','WooCommerce','order_note',0,0),(16,391,'eessel','ekow@esselwebdesign.com','','','2021-02-16 23:35:07','2021-02-16 23:35:07','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0),(17,392,'eessel','ekow@esselwebdesign.com','','','2021-02-16 23:51:21','2021-02-16 23:51:21','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0),(18,392,'eessel','ekow@esselwebdesign.com','','','2021-02-16 23:52:14','2021-02-16 23:52:14','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_cpappbk_forms`
--

DROP TABLE IF EXISTS `wp_cpappbk_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_cpappbk_forms` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `form_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `form_structure` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `calendar_language` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `date_format` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `product_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `pay_later_label` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `defaultstatus` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `defaultpaidstatus` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_from_email` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_destination_emails` text COLLATE utf8mb4_unicode_520_ci,
  `fp_subject` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_inc_additional_info` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_return_page` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_message` text COLLATE utf8mb4_unicode_520_ci,
  `fp_emailformat` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_emailtomethod` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_destination_emails_field` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cu_enable_copy_to_user` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cu_user_email_field` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cu_subject` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cu_message` text COLLATE utf8mb4_unicode_520_ci,
  `cu_emailformat` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `fp_emailfrommethod` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_maxapp` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_is_required` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_is_email` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_datemmddyyyy` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_dateddmmyyyy` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_number` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_digits` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_max` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_min` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_pageof` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_submitbtn` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_previousbtn` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_nextbtn` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `vs_text_quantity` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `vs_text_cancel` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `vs_text_cost` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `vs_text_nmore` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `cp_user_access` text COLLATE utf8mb4_unicode_520_ci,
  `cp_user_access_settings` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `display_emails_endtime` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `rep_enable` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `rep_days` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `rep_hour` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `rep_emails` text COLLATE utf8mb4_unicode_520_ci,
  `rep_subject` text COLLATE utf8mb4_unicode_520_ci,
  `rep_emailformat` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `rep_message` text COLLATE utf8mb4_unicode_520_ci,
  `cv_enable_captcha` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_width` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_height` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_chars` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_font` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_min_font_size` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_max_font_size` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_noise` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_noise_length` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_background` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_border` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `cv_text_enter_valid_captcha` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_cpappbk_forms`
--

LOCK TABLES `wp_cpappbk_forms` WRITE;
/*!40000 ALTER TABLE `wp_cpappbk_forms` DISABLE KEYS */;
INSERT INTO `wp_cpappbk_forms` VALUES (2,'Eco Solutions Free Consultation','[[{\"form_identifier\":\"\",\"name\":\"fieldname1\",\"shortlabel\":\"\",\"index\":0,\"ftype\":\"fapp\",\"userhelp\":\"\",\"userhelpTooltip\":false,\"csslayout\":\"\",\"title\":\"Appointment\",\"services\":[{\"name\":\"Eco Solutions Free Consultation\",\"price\":0,\"capacity\":\"1\",\"duration\":\"120\",\"pb\":0,\"pa\":60,\"ohindex\":0}],\"openhours\":[],\"allOH\":[{\"name\":\"Default\",\"openhours\":[{\"type\":\"all\",\"d\":\"\",\"h1\":\"7\",\"m1\":\"0\",\"h2\":\"19\",\"m2\":\"0\"}]}],\"dateFormat\":\"mm/dd/yy\",\"showDropdown\":false,\"showTotalCost\":false,\"showTotalCostFormat\":\"$ {0}\",\"showEndTime\":false,\"showQuantity\":false,\"usedSlotsCheckbox\":true,\"avoidOverlaping\":true,\"emptySelectCheckbox\":false,\"emptySelect\":\"-- Please select service --\",\"dropdownRange\":\"-10:+10\",\"working_dates\":[true,true,true,true,true,true,true],\"numberOfMonths\":1,\"maxNumberOfApp\":0,\"firstDay\":0,\"minDate\":\"0\",\"maxDate\":\"\",\"defaultDate\":\"\",\"invalidDates\":\"\",\"tmpinvalidDates\":\"\",\"required\":true,\"bSlotsCheckbox\":true,\"bSlots\":30,\"militaryTime\":\"0\",\"fBuild\":{},\"special_days\":[],\"minDateTmp\":\"0\",\"getMinDate\":{},\"tmpinvalidDatestime\":[]},{\"form_identifier\":\"\",\"name\":\"email\",\"shortlabel\":\"\",\"index\":1,\"ftype\":\"femail\",\"userhelp\":\"\",\"userhelpTooltip\":false,\"csslayout\":\"\",\"title\":\"Email\",\"predefined\":\"\",\"predefinedClick\":false,\"required\":true,\"size\":\"medium\",\"equalTo\":\"\",\"fBuild\":{}}],[{\"title\":\"\",\"description\":\"\",\"formlayout\":\"top_aligned\",\"formtemplate\":\"\",\"evalequations\":1,\"autocomplete\":1}]]','','mm/dd/yy','','','','','info@edssnow.com','info@edssnow.com','Notification to administrator: Booking request received...','true','http://edssnow.com','The following booking request has been received:\r\n\r\n<%INFO%>','text','fixed','fieldname1','true','email','Confirmation: Your booking has been received...','Your appointment is received. We look forward to seeing you then.\r\n\r\nThis is a copy of the data sent:\r\n\r\n<%INFO%>\r\n\r\nBest Regards.','text','fixed','Please select a max of {0} appointments per customer.','This field is required.','Please enter a valid email address.','Please enter a valid date with this format(mm/dd/yyyy)','Please enter a valid date with this format(dd/mm/yyyy)','Please enter a valid number.','Please enter only digits.','Please enter a value less than or equal to {0}.','Please enter a value greater than or equal to {0}.','Page {0} of {0}','Submit','Previous','Next','Quantity','Cancel','Cost','Selected time is no longer available. Please select a different time.','a:0:{}','','','no','','0','','','text','','true','180','60','5','font1','25','35','200','4','ffffff','000000','Please enter a valid captcha code.');
/*!40000 ALTER TABLE `wp_cpappbk_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_cpappbk_messages`
--

DROP TABLE IF EXISTS `wp_cpappbk_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_cpappbk_messages` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `formid` int(11) NOT NULL,
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `ipaddr` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `notifyto` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `posted_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `whoadded` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_cpappbk_messages`
--

LOCK TABLES `wp_cpappbk_messages` WRITE;
/*!40000 ALTER TABLE `wp_cpappbk_messages` DISABLE KEYS */;
INSERT INTO `wp_cpappbk_messages` VALUES (1,2,'2021-02-15 01:39:10','69.222.196.79','ekow@esselwebdesign.com','Appointments:\n - 02/16/2021 10:00 AM - 12:00 PM (Eco Solutions Free Consultation)\n\nEmail: ekow@esselwebdesign.com\n\n','a:19:{s:11:\"final_price\";s:4:\"0.00\";s:17:\"final_price_short\";s:1:\"0\";s:17:\"request_timestamp\";s:19:\"2021-02-15 01:39:10\";s:4:\"apps\";a:1:{i:0;a:11:{s:2:\"id\";i:1;s:9:\"cancelled\";s:0:\"\";s:12:\"serviceindex\";s:1:\"0\";s:7:\"service\";s:31:\"Eco Solutions Free Consultation\";s:8:\"duration\";s:3:\"120\";s:5:\"price\";d:0;s:4:\"date\";s:10:\"2021-02-16\";s:4:\"slot\";s:11:\"10:00/12:00\";s:8:\"military\";s:1:\"0\";s:5:\"field\";s:10:\"fieldname1\";s:5:\"quant\";s:1:\"1\";}}s:13:\"app_service_1\";s:31:\"Eco Solutions Free Consultation\";s:12:\"app_status_1\";s:0:\"\";s:14:\"app_duration_1\";s:3:\"120\";s:11:\"app_price_1\";d:0;s:10:\"app_date_1\";s:10:\"02/16/2021\";s:10:\"app_slot_1\";s:11:\"10:00/12:00\";s:15:\"app_starttime_1\";s:8:\"10:00 AM\";s:13:\"app_endtime_1\";s:8:\"12:00 PM\";s:14:\"app_quantity_1\";s:1:\"1\";s:6:\"formid\";i:2;s:8:\"formname\";s:31:\"Eco Solutions Free Consultation\";s:8:\"referrer\";s:27:\"http://edssnow.com/booking/\";s:10:\"fieldname1\";s:68:\" - 02/16/2021 10:00 AM - 12:00 PM (Eco Solutions Free Consultation)\n\";s:5:\"email\";s:23:\"ekow@esselwebdesign.com\";s:10:\"itemnumber\";s:1:\"1\";}','1'),(2,2,'2021-03-12 20:14:33','97.116.173.28','flutemama22@gmail.com','Appointments:\n - 03/12/2021 4:00 PM - 6:00 PM (Eco Solutions Free Consultation)\n\nEmail: flutemama22@gmail.com\n\n','a:19:{s:11:\"final_price\";s:4:\"0.00\";s:17:\"final_price_short\";s:1:\"0\";s:17:\"request_timestamp\";s:19:\"2021-03-12 20:14:33\";s:4:\"apps\";a:1:{i:0;a:11:{s:2:\"id\";i:1;s:9:\"cancelled\";s:0:\"\";s:12:\"serviceindex\";s:1:\"0\";s:7:\"service\";s:31:\"Eco Solutions Free Consultation\";s:8:\"duration\";s:3:\"120\";s:5:\"price\";d:0;s:4:\"date\";s:10:\"2021-03-12\";s:4:\"slot\";s:11:\"16:00/18:00\";s:8:\"military\";s:1:\"0\";s:5:\"field\";s:10:\"fieldname1\";s:5:\"quant\";s:1:\"1\";}}s:13:\"app_service_1\";s:31:\"Eco Solutions Free Consultation\";s:12:\"app_status_1\";s:0:\"\";s:14:\"app_duration_1\";s:3:\"120\";s:11:\"app_price_1\";d:0;s:10:\"app_date_1\";s:10:\"03/12/2021\";s:10:\"app_slot_1\";s:11:\"16:00/18:00\";s:15:\"app_starttime_1\";s:7:\"4:00 PM\";s:13:\"app_endtime_1\";s:7:\"6:00 PM\";s:14:\"app_quantity_1\";s:1:\"1\";s:6:\"formid\";i:2;s:8:\"formname\";s:31:\"Eco Solutions Free Consultation\";s:8:\"referrer\";s:28:\"https://edssnow.com/booking/\";s:10:\"fieldname1\";s:66:\" - 03/12/2021 4:00 PM - 6:00 PM (Eco Solutions Free Consultation)\n\";s:5:\"email\";s:21:\"flutemama22@gmail.com\";s:10:\"itemnumber\";s:1:\"2\";}','0');
/*!40000 ALTER TABLE `wp_cpappbk_messages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_duplicator_packages`
--

DROP TABLE IF EXISTS `wp_duplicator_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) COLLATE utf8_unicode_ci NOT NULL,
  `hash` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
  `package` longtext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_duplicator_packages`
--

LOCK TABLES `wp_duplicator_packages` WRITE;
/*!40000 ALTER TABLE `wp_duplicator_packages` DISABLE KEYS */;
INSERT INTO `wp_duplicator_packages` VALUES (1,'20210216_ecosolutions','094e5e6a3b0c408a9033_20210216223410',100,'2021-02-16 22:34:56','unknown','O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2021-02-16 22:34:10\";s:7:\"Version\";s:8:\"1.3.40.1\";s:9:\"VersionWP\";s:5:\"5.6.1\";s:9:\"VersionDB\";s:6:\"5.6.41\";s:10:\"VersionPHP\";s:6:\"7.3.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:1;s:4:\"Name\";s:21:\"20210216_ecosolutions\";s:4:\"Hash\";s:35:\"094e5e6a3b0c408a9033_20210216223410\";s:8:\"NameHash\";s:57:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";s:67:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410_scan.json\";s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";s:10:\"42.81 sec.\";s:7:\"ExeSize\";s:7:\"61.29KB\";s:7:\"ZipSize\";s:7:\"98.22MB\";s:6:\"Status\";s:5:\"100.0\";s:6:\"WPUser\";s:7:\"unknown\";s:7:\"Archive\";O:11:\"DUP_Archive\":23:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";s:69:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:37:\"/home2/church/public_html/edssnow.com\";s:4:\"Size\";i:102993861;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":5:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":6:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":3:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"file_count\";i:15923;s:10:\"\0*\0Package\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:5:{i:0;s:46:\"/home2/church/public_html/edssnow.com/wp-admin\";i:1;s:56:\"/home2/church/public_html/edssnow.com/wp-content/uploads\";i:2;s:58:\"/home2/church/public_html/edssnow.com/wp-content/languages\";i:3;s:55:\"/home2/church/public_html/edssnow.com/wp-content/themes\";i:4;s:49:\"/home2/church/public_html/edssnow.com/wp-includes\";}s:29:\"\0DUP_Archive\0wpCoreExactPaths\";a:2:{i:0;s:37:\"/home2/church/public_html/edssnow.com\";i:1;s:48:\"/home2/church/public_html/edssnow.com/wp-content\";}s:19:\"isOuterWPContentDir\";b:0;s:25:\"wpContentDirNormalizePath\";s:49:\"/home2/church/public_html/edssnow.com/wp-content/\";}s:9:\"Installer\";O:13:\"DUP_Installer\":13:{s:4:\"File\";s:71:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410_installer.php\";s:4:\"Size\";i:62763;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:13:\"OptsDBCharset\";s:0:\"\";s:15:\"OptsDBCollation\";s:0:\"\";s:12:\"OptsSecureOn\";i:0;s:14:\"OptsSecurePass\";s:0:\"\";s:13:\"numFilesAdded\";i:0;s:12:\"numDirsAdded\";i:0;s:10:\"\0*\0Package\";r:1;}s:8:\"Database\";O:12:\"DUP_Database\":15:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:9972055;s:4:\"File\";s:70:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:52:\"Percona Server (GPL), Release 84.1, Revision b308619\";s:4:\"info\";O:16:\"DUP_DatabaseInfo\":15:{s:9:\"buildMode\";s:9:\"MYSQLDUMP\";s:13:\"collationList\";a:4:{i:0;s:22:\"utf8mb4_unicode_520_ci\";i:1;s:15:\"utf8_unicode_ci\";i:2;s:18:\"utf8mb4_general_ci\";i:3;s:15:\"utf8_general_ci\";}s:17:\"isTablesUpperCase\";i:0;s:15:\"isNameUpperCase\";i:0;s:4:\"name\";s:14:\"church_edssnow\";s:15:\"tablesBaseCount\";i:86;s:16:\"tablesFinalCount\";i:86;s:14:\"tablesRowCount\";s:5:\"3,971\";s:16:\"tablesSizeOnDisk\";s:7:\"16.55MB\";s:18:\"varLowerCaseTables\";s:1:\"0\";s:7:\"version\";s:6:\"5.6.41\";s:14:\"versionComment\";s:52:\"Percona Server (GPL), Release 84.1, Revision b308619\";s:18:\"tableWiseRowCounts\";a:86:{s:26:\"wp_actionscheduler_actions\";s:2:\"19\";s:25:\"wp_actionscheduler_claims\";s:1:\"0\";s:25:\"wp_actionscheduler_groups\";s:1:\"3\";s:23:\"wp_actionscheduler_logs\";s:2:\"57\";s:22:\"wp_bookly_appointments\";s:1:\"0\";s:20:\"wp_bookly_categories\";s:1:\"0\";s:31:\"wp_bookly_customer_appointments\";s:1:\"0\";s:19:\"wp_bookly_customers\";s:1:\"0\";s:18:\"wp_bookly_holidays\";s:1:\"0\";s:13:\"wp_bookly_log\";s:1:\"0\";s:18:\"wp_bookly_messages\";s:1:\"0\";s:23:\"wp_bookly_notifications\";s:2:\"15\";s:18:\"wp_bookly_payments\";s:1:\"0\";s:30:\"wp_bookly_schedule_item_breaks\";s:1:\"0\";s:28:\"wp_bookly_sent_notifications\";s:1:\"0\";s:16:\"wp_bookly_series\";s:1:\"0\";s:18:\"wp_bookly_services\";s:1:\"1\";s:14:\"wp_bookly_shop\";s:2:\"43\";s:15:\"wp_bookly_staff\";s:1:\"0\";s:30:\"wp_bookly_staff_schedule_items\";s:1:\"0\";s:24:\"wp_bookly_staff_services\";s:1:\"0\";s:15:\"wp_bookly_stats\";s:1:\"0\";s:22:\"wp_bookly_sub_services\";s:1:\"0\";s:14:\"wp_commentmeta\";s:1:\"0\";s:11:\"wp_comments\";s:1:\"7\";s:16:\"wp_cpappbk_forms\";s:1:\"1\";s:19:\"wp_cpappbk_messages\";s:1:\"1\";s:22:\"wp_duplicator_packages\";s:1:\"1\";s:8:\"wp_links\";s:1:\"0\";s:18:\"wp_nf3_action_meta\";s:2:\"85\";s:14:\"wp_nf3_actions\";s:1:\"4\";s:13:\"wp_nf3_chunks\";s:1:\"0\";s:17:\"wp_nf3_field_meta\";s:3:\"506\";s:13:\"wp_nf3_fields\";s:2:\"14\";s:16:\"wp_nf3_form_meta\";s:3:\"113\";s:12:\"wp_nf3_forms\";s:1:\"1\";s:18:\"wp_nf3_object_meta\";s:1:\"0\";s:14:\"wp_nf3_objects\";s:1:\"0\";s:20:\"wp_nf3_relationships\";s:1:\"0\";s:15:\"wp_nf3_upgrades\";s:1:\"1\";s:10:\"wp_options\";s:3:\"664\";s:11:\"wp_postmeta\";s:4:\"2283\";s:8:\"wp_posts\";s:3:\"351\";s:21:\"wp_term_relationships\";s:1:\"9\";s:16:\"wp_term_taxonomy\";s:2:\"18\";s:11:\"wp_termmeta\";s:1:\"2\";s:8:\"wp_terms\";s:2:\"18\";s:11:\"wp_usermeta\";s:2:\"35\";s:8:\"wp_users\";s:1:\"1\";s:24:\"wp_wc_admin_note_actions\";s:2:\"29\";s:17:\"wp_wc_admin_notes\";s:2:\"27\";s:27:\"wp_wc_booking_relationships\";s:1:\"0\";s:27:\"wp_wc_bookings_availability\";s:1:\"0\";s:31:\"wp_wc_bookings_availabilitymeta\";s:1:\"0\";s:21:\"wp_wc_category_lookup\";s:1:\"1\";s:21:\"wp_wc_customer_lookup\";s:1:\"2\";s:18:\"wp_wc_download_log\";s:1:\"0\";s:25:\"wp_wc_order_coupon_lookup\";s:1:\"0\";s:26:\"wp_wc_order_product_lookup\";s:1:\"0\";s:17:\"wp_wc_order_stats\";s:1:\"3\";s:22:\"wp_wc_order_tax_lookup\";s:1:\"0\";s:25:\"wp_wc_product_meta_lookup\";s:1:\"1\";s:20:\"wp_wc_reserved_stock\";s:1:\"0\";s:22:\"wp_wc_tax_rate_classes\";s:1:\"2\";s:14:\"wp_wc_webhooks\";s:1:\"0\";s:23:\"wp_woocommerce_api_keys\";s:1:\"0\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:1:\"0\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:1:\"0\";s:18:\"wp_woocommerce_log\";s:1:\"0\";s:29:\"wp_woocommerce_order_itemmeta\";s:2:\"24\";s:26:\"wp_woocommerce_order_items\";s:1:\"4\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:1:\"0\";s:29:\"wp_woocommerce_payment_tokens\";s:1:\"0\";s:23:\"wp_woocommerce_sessions\";s:1:\"1\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:1:\"0\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:1:\"0\";s:29:\"wp_woocommerce_shipping_zones\";s:1:\"0\";s:33:\"wp_woocommerce_tax_rate_locations\";s:1:\"0\";s:24:\"wp_woocommerce_tax_rates\";s:1:\"0\";s:21:\"wp_wpdevart_calendars\";s:1:\"1\";s:17:\"wp_wpdevart_dates\";s:1:\"0\";s:18:\"wp_wpdevart_extras\";s:1:\"1\";s:17:\"wp_wpdevart_forms\";s:1:\"1\";s:20:\"wp_wpdevart_payments\";s:1:\"0\";s:24:\"wp_wpdevart_reservations\";s:1:\"0\";s:18:\"wp_wpdevart_themes\";s:1:\"1\";}s:33:\"\0DUP_DatabaseInfo\0intFieldsStruct\";a:0:{}s:42:\"\0DUP_DatabaseInfo\0indexProcessedSchemaSize\";a:0:{}}s:10:\"\0*\0Package\";r:1;s:24:\"\0DUP_Database\0tempDbPath\";s:140:\"/home2/church/public_html/edssnow.com/wp-content/backups-dup-lite/tmp/20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;s:19:\"sameNameTableExists\";b:0;}s:13:\"BuildProgress\";O:18:\"DUP_Build_Progress\":12:{s:17:\"thread_start_time\";N;s:11:\"initialized\";b:0;s:15:\"installer_built\";b:1;s:15:\"archive_started\";b:0;s:20:\"archive_has_database\";b:0;s:13:\"archive_built\";b:0;s:21:\"database_script_built\";b:0;s:6:\"failed\";b:0;s:7:\"retries\";i:0;s:14:\"build_failures\";a:0:{}s:19:\"validation_failures\";a:0:{}s:27:\"\0DUP_Build_Progress\0package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2021-02-16 22:34:10\";s:7:\"Version\";s:8:\"1.3.40.1\";s:9:\"VersionWP\";s:5:\"5.6.1\";s:9:\"VersionDB\";s:6:\"5.6.41\";s:10:\"VersionPHP\";s:6:\"7.3.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:21:\"20210216_ecosolutions\";s:4:\"Hash\";s:35:\"094e5e6a3b0c408a9033_20210216223410\";s:8:\"NameHash\";s:57:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";N;s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";r:21;s:9:\"Installer\";r:74;s:8:\"Database\";r:88;s:13:\"BuildProgress\";r:209;}}}');
/*!40000 ALTER TABLE `wp_duplicator_packages` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

--
-- Table structure for table `wp_nf3_action_meta`
--

DROP TABLE IF EXISTS `wp_nf3_action_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_action_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_action_meta`
--

LOCK TABLES `wp_nf3_action_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_action_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_action_meta` VALUES (1,1,'objectType','Action','objectType','Action'),(2,1,'objectDomain','actions','objectDomain','actions'),(3,1,'editActive','','editActive',''),(4,1,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(5,1,'payment_gateways','','payment_gateways',''),(6,1,'payment_total','','payment_total',''),(7,1,'tag','','tag',''),(8,1,'to','{wp:admin_email}','to','{wp:admin_email}'),(9,1,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(10,1,'email_message','{fields_table}','email_message','{fields_table}'),(11,1,'from_name','','from_name',''),(12,1,'from_address','','from_address',''),(13,1,'reply_to','','reply_to',''),(14,1,'email_format','html','email_format','html'),(15,1,'cc','','cc',''),(16,1,'bcc','','bcc',''),(17,1,'attach_csv','','attach_csv',''),(18,1,'redirect_url','','redirect_url',''),(19,1,'email_message_plain','','email_message_plain',''),(20,2,'to','{field:your_email_address_1612184815795}','to','{field:your_email_address_1612184815795}'),(21,2,'subject','This is an email action.','subject','This is an email action.'),(22,2,'message','Hello, Ninja Forms!','message','Hello, Ninja Forms!'),(23,2,'objectType','Action','objectType','Action'),(24,2,'objectDomain','actions','objectDomain','actions'),(25,2,'editActive','','editActive',''),(26,2,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(27,2,'payment_gateways','','payment_gateways',''),(28,2,'payment_total','','payment_total',''),(29,2,'tag','','tag',''),(30,2,'email_subject','Submission Confirmation ','email_subject','Submission Confirmation '),(31,2,'email_message','<p>{all_fields_table}<br></p>','email_message','<p>{all_fields_table}<br></p>'),(32,2,'from_name','','from_name',''),(33,2,'from_address','','from_address',''),(34,2,'reply_to','','reply_to',''),(35,2,'email_format','html','email_format','html'),(36,2,'cc','','cc',''),(37,2,'bcc','','bcc',''),(38,2,'attach_csv','','attach_csv',''),(39,2,'email_message_plain','','email_message_plain',''),(40,3,'objectType','Action','objectType','Action'),(41,3,'objectDomain','actions','objectDomain','actions'),(42,3,'editActive','','editActive',''),(43,3,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(44,3,'payment_gateways','','payment_gateways',''),(45,3,'payment_total','','payment_total',''),(46,3,'tag','','tag',''),(47,3,'to','sheltoncole1@comcast.net','to','sheltoncole1@comcast.net'),(48,3,'email_subject','New message from {field:your_name_1612184773783}','email_subject','New message from {field:your_name_1612184773783}'),(49,3,'email_message','<p>{all_fields_table}</p><p>-{field:your_name_1612184773783} ( {field:your_email_address_1612184815795} )</p>','email_message','<p>{all_fields_table}</p><p>-{field:your_name_1612184773783} ( {field:your_email_address_1612184815795} )</p>'),(50,3,'from_name','','from_name',''),(51,3,'from_address','','from_address',''),(52,3,'reply_to','{field:your_email_address_1612184815795}','reply_to','{field:your_email_address_1612184815795}'),(53,3,'email_format','html','email_format','html'),(54,3,'cc','','cc',''),(55,3,'bcc','','bcc',''),(56,3,'attach_csv','0','attach_csv','0'),(57,3,'email_message_plain','','email_message_plain',''),(58,4,'message','Thank you {field:your_name_1612184773783} for filling out my form!','message','Thank you {field:your_name_1612184773783} for filling out my form!'),(59,4,'objectType','Action','objectType','Action'),(60,4,'objectDomain','actions','objectDomain','actions'),(61,4,'editActive','','editActive',''),(62,4,'conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}','conditions','a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}'),(63,4,'payment_gateways','','payment_gateways',''),(64,4,'payment_total','','payment_total',''),(65,4,'tag','','tag',''),(66,4,'to','{wp:admin_email}','to','{wp:admin_email}'),(67,4,'email_subject','Ninja Forms Submission','email_subject','Ninja Forms Submission'),(68,4,'email_message','{fields_table}','email_message','{fields_table}'),(69,4,'from_name','','from_name',''),(70,4,'from_address','','from_address',''),(71,4,'reply_to','','reply_to',''),(72,4,'email_format','html','email_format','html'),(73,4,'cc','','cc',''),(74,4,'bcc','','bcc',''),(75,4,'attach_csv','','attach_csv',''),(76,4,'redirect_url','','redirect_url',''),(77,4,'success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:your_email_address_1612184815795}.</p>','success_msg','<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:your_email_address_1612184815795}.</p>'),(78,4,'email_message_plain','','email_message_plain',''),(79,1,'success_msg','Your form has been successfully submitted.','success_msg','Your form has been successfully submitted.'),(80,1,'submitter_email','','submitter_email',''),(81,1,'fields-save-toggle','save_all','fields-save-toggle','save_all'),(82,1,'exception_fields','a:0:{}','exception_fields','a:0:{}'),(83,1,'set_subs_to_expire','0','set_subs_to_expire','0'),(84,1,'subs_expire_time','90','subs_expire_time','90'),(85,3,'drawerDisabled','','drawerDisabled','');
/*!40000 ALTER TABLE `wp_nf3_action_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_actions`
--

DROP TABLE IF EXISTS `wp_nf3_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_actions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext,
  `key` longtext,
  `type` longtext,
  `active` tinyint(1) DEFAULT '1',
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `label` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_actions`
--

LOCK TABLES `wp_nf3_actions` WRITE;
/*!40000 ALTER TABLE `wp_nf3_actions` DISABLE KEYS */;
INSERT INTO `wp_nf3_actions` VALUES (1,'','','save',1,1,'2021-01-24 23:46:06','2021-01-24 23:46:06','Store Submission'),(2,'','','email',1,1,'2021-01-24 23:46:06','2021-01-24 23:46:06','Email Confirmation'),(3,'','','email',1,1,'2021-01-24 23:46:07','2021-01-24 23:46:06','Email Notification'),(4,'','','successmessage',1,1,'2021-01-24 23:46:07','2021-01-24 23:46:07','Success Message');
/*!40000 ALTER TABLE `wp_nf3_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_chunks`
--

DROP TABLE IF EXISTS `wp_nf3_chunks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_chunks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) DEFAULT NULL,
  `value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_chunks`
--

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

--
-- Table structure for table `wp_nf3_field_meta`
--

DROP TABLE IF EXISTS `wp_nf3_field_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_field_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=544 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_field_meta`
--

LOCK TABLES `wp_nf3_field_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_field_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_field_meta` VALUES (1,1,'label_pos','above','label_pos','above'),(2,1,'required','1','required','1'),(3,1,'order','1','order','1'),(4,1,'placeholder','','placeholder',''),(5,1,'default','','default',''),(6,1,'wrapper_class','','wrapper_class',''),(7,1,'element_class','','element_class',''),(8,1,'objectType','Field','objectType','Field'),(9,1,'objectDomain','fields','objectDomain','fields'),(10,1,'editActive','','editActive',''),(11,1,'container_class','','container_class',''),(12,1,'input_limit','','input_limit',''),(13,1,'input_limit_type','characters','input_limit_type','characters'),(14,1,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(15,1,'manual_key','','manual_key',''),(16,1,'disable_input','','disable_input',''),(17,1,'admin_label','','admin_label',''),(18,1,'help_text','','help_text',''),(19,1,'desc_text','<p>First and Last Please</p>','desc_text','<p>First and Last Please</p>'),(20,1,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(21,1,'mask','','mask',''),(22,1,'custom_mask','','custom_mask',''),(23,1,'wrap_styles_background-color','','wrap_styles_background-color',''),(24,1,'wrap_styles_border','','wrap_styles_border',''),(25,1,'wrap_styles_border-style','','wrap_styles_border-style',''),(26,1,'wrap_styles_border-color','','wrap_styles_border-color',''),(27,1,'wrap_styles_color','','wrap_styles_color',''),(28,1,'wrap_styles_height','','wrap_styles_height',''),(29,1,'wrap_styles_width','','wrap_styles_width',''),(30,1,'wrap_styles_font-size','','wrap_styles_font-size',''),(31,1,'wrap_styles_margin','','wrap_styles_margin',''),(32,1,'wrap_styles_padding','','wrap_styles_padding',''),(33,1,'wrap_styles_display','','wrap_styles_display',''),(34,1,'wrap_styles_float','','wrap_styles_float',''),(35,1,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(36,1,'wrap_styles_advanced','','wrap_styles_advanced',''),(37,1,'label_styles_background-color','','label_styles_background-color',''),(38,1,'label_styles_border','','label_styles_border',''),(39,1,'label_styles_border-style','','label_styles_border-style',''),(40,1,'label_styles_border-color','','label_styles_border-color',''),(41,1,'label_styles_color','','label_styles_color',''),(42,1,'label_styles_height','','label_styles_height',''),(43,1,'label_styles_width','','label_styles_width',''),(44,1,'label_styles_font-size','','label_styles_font-size',''),(45,1,'label_styles_margin','','label_styles_margin',''),(46,1,'label_styles_padding','','label_styles_padding',''),(47,1,'label_styles_display','','label_styles_display',''),(48,1,'label_styles_float','','label_styles_float',''),(49,1,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(50,1,'label_styles_advanced','','label_styles_advanced',''),(51,1,'element_styles_background-color','','element_styles_background-color',''),(52,1,'element_styles_border','','element_styles_border',''),(53,1,'element_styles_border-style','','element_styles_border-style',''),(54,1,'element_styles_border-color','','element_styles_border-color',''),(55,1,'element_styles_color','','element_styles_color',''),(56,1,'element_styles_height','','element_styles_height',''),(57,1,'element_styles_width','','element_styles_width',''),(58,1,'element_styles_font-size','','element_styles_font-size',''),(59,1,'element_styles_margin','','element_styles_margin',''),(60,1,'element_styles_padding','','element_styles_padding',''),(61,1,'element_styles_display','','element_styles_display',''),(62,1,'element_styles_float','','element_styles_float',''),(63,1,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(64,1,'element_styles_advanced','','element_styles_advanced',''),(65,1,'cellcid','c3277','cellcid','c3277'),(66,2,'label_pos','above','label_pos','above'),(67,2,'required','1','required','1'),(68,2,'order','2','order','2'),(69,2,'placeholder','','placeholder',''),(70,2,'default','','default',''),(71,2,'wrapper_class','','wrapper_class',''),(72,2,'element_class','','element_class',''),(73,2,'objectType','Field','objectType','Field'),(74,2,'objectDomain','fields','objectDomain','fields'),(75,2,'editActive','','editActive',''),(76,2,'container_class','','container_class',''),(77,2,'admin_label','','admin_label',''),(78,2,'help_text','','help_text',''),(79,2,'desc_text','<p>Don\'t worry, we won\'t spam you or share your data, ever! We understand how annoying that can be!</p>','desc_text','<p>Don\'t worry, we won\'t spam you or share your data, ever! We understand how annoying that can be!</p>'),(80,2,'wrap_styles_background-color','','wrap_styles_background-color',''),(81,2,'wrap_styles_border','','wrap_styles_border',''),(82,2,'wrap_styles_border-style','','wrap_styles_border-style',''),(83,2,'wrap_styles_border-color','','wrap_styles_border-color',''),(84,2,'wrap_styles_color','','wrap_styles_color',''),(85,2,'wrap_styles_height','','wrap_styles_height',''),(86,2,'wrap_styles_width','','wrap_styles_width',''),(87,2,'wrap_styles_font-size','','wrap_styles_font-size',''),(88,2,'wrap_styles_margin','','wrap_styles_margin',''),(89,2,'wrap_styles_padding','','wrap_styles_padding',''),(90,2,'wrap_styles_display','','wrap_styles_display',''),(91,2,'wrap_styles_float','','wrap_styles_float',''),(92,2,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(93,2,'wrap_styles_advanced','','wrap_styles_advanced',''),(94,2,'label_styles_background-color','','label_styles_background-color',''),(95,2,'label_styles_border','','label_styles_border',''),(96,2,'label_styles_border-style','','label_styles_border-style',''),(97,2,'label_styles_border-color','','label_styles_border-color',''),(98,2,'label_styles_color','','label_styles_color',''),(99,2,'label_styles_height','','label_styles_height',''),(100,2,'label_styles_width','','label_styles_width',''),(101,2,'label_styles_font-size','','label_styles_font-size',''),(102,2,'label_styles_margin','','label_styles_margin',''),(103,2,'label_styles_padding','','label_styles_padding',''),(104,2,'label_styles_display','','label_styles_display',''),(105,2,'label_styles_float','','label_styles_float',''),(106,2,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(107,2,'label_styles_advanced','','label_styles_advanced',''),(108,2,'element_styles_background-color','','element_styles_background-color',''),(109,2,'element_styles_border','','element_styles_border',''),(110,2,'element_styles_border-style','','element_styles_border-style',''),(111,2,'element_styles_border-color','','element_styles_border-color',''),(112,2,'element_styles_color','','element_styles_color',''),(113,2,'element_styles_height','','element_styles_height',''),(114,2,'element_styles_width','','element_styles_width',''),(115,2,'element_styles_font-size','','element_styles_font-size',''),(116,2,'element_styles_margin','','element_styles_margin',''),(117,2,'element_styles_padding','','element_styles_padding',''),(118,2,'element_styles_display','','element_styles_display',''),(119,2,'element_styles_float','','element_styles_float',''),(120,2,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(121,2,'element_styles_advanced','','element_styles_advanced',''),(122,2,'cellcid','c3281','cellcid','c3281'),(123,3,'label_pos','above','label_pos','above'),(124,3,'required','1','required','1'),(125,3,'order','15','order','15'),(126,3,'placeholder','','placeholder',''),(127,3,'default','','default',''),(128,3,'wrapper_class','','wrapper_class',''),(129,3,'element_class','','element_class',''),(130,3,'objectType','Field','objectType','Field'),(131,3,'objectDomain','fields','objectDomain','fields'),(132,3,'editActive','','editActive',''),(133,3,'container_class','','container_class',''),(134,3,'input_limit','','input_limit',''),(135,3,'input_limit_type','characters','input_limit_type','characters'),(136,3,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(137,3,'manual_key','','manual_key',''),(138,3,'disable_input','','disable_input',''),(139,3,'admin_label','','admin_label',''),(140,3,'help_text','','help_text',''),(141,3,'desc_text','<p>The Meat &amp; Potato\'s! Give us the details of the project below. (Nightly Cleaning of Restrooms, Mop Lobby, etc)</p>','desc_text','<p>The Meat &amp; Potato\'s! Give us the details of the project below. (Nightly Cleaning of Restrooms, Mop Lobby, etc)</p>'),(142,3,'disable_browser_autocomplete','','disable_browser_autocomplete',''),(143,3,'textarea_rte','','textarea_rte',''),(144,3,'disable_rte_mobile','','disable_rte_mobile',''),(145,3,'textarea_media','','textarea_media',''),(146,3,'wrap_styles_background-color','','wrap_styles_background-color',''),(147,3,'wrap_styles_border','','wrap_styles_border',''),(148,3,'wrap_styles_border-style','','wrap_styles_border-style',''),(149,3,'wrap_styles_border-color','','wrap_styles_border-color',''),(150,3,'wrap_styles_color','','wrap_styles_color',''),(151,3,'wrap_styles_height','','wrap_styles_height',''),(152,3,'wrap_styles_width','','wrap_styles_width',''),(153,3,'wrap_styles_font-size','','wrap_styles_font-size',''),(154,3,'wrap_styles_margin','','wrap_styles_margin',''),(155,3,'wrap_styles_padding','','wrap_styles_padding',''),(156,3,'wrap_styles_display','','wrap_styles_display',''),(157,3,'wrap_styles_float','','wrap_styles_float',''),(158,3,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(159,3,'wrap_styles_advanced','','wrap_styles_advanced',''),(160,3,'label_styles_background-color','','label_styles_background-color',''),(161,3,'label_styles_border','','label_styles_border',''),(162,3,'label_styles_border-style','','label_styles_border-style',''),(163,3,'label_styles_border-color','','label_styles_border-color',''),(164,3,'label_styles_color','','label_styles_color',''),(165,3,'label_styles_height','','label_styles_height',''),(166,3,'label_styles_width','','label_styles_width',''),(167,3,'label_styles_font-size','','label_styles_font-size',''),(168,3,'label_styles_margin','','label_styles_margin',''),(169,3,'label_styles_padding','','label_styles_padding',''),(170,3,'label_styles_display','','label_styles_display',''),(171,3,'label_styles_float','','label_styles_float',''),(172,3,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(173,3,'label_styles_advanced','','label_styles_advanced',''),(174,3,'element_styles_background-color','','element_styles_background-color',''),(175,3,'element_styles_border','','element_styles_border',''),(176,3,'element_styles_border-style','','element_styles_border-style',''),(177,3,'element_styles_border-color','','element_styles_border-color',''),(178,3,'element_styles_color','','element_styles_color',''),(179,3,'element_styles_height','','element_styles_height',''),(180,3,'element_styles_width','','element_styles_width',''),(181,3,'element_styles_font-size','','element_styles_font-size',''),(182,3,'element_styles_margin','','element_styles_margin',''),(183,3,'element_styles_padding','','element_styles_padding',''),(184,3,'element_styles_display','','element_styles_display',''),(185,3,'element_styles_float','','element_styles_float',''),(186,3,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(187,3,'element_styles_advanced','','element_styles_advanced',''),(188,3,'cellcid','c3284','cellcid','c3284'),(189,4,'processing_label','Processing','processing_label','Processing'),(190,4,'order','16','order','16'),(191,4,'objectType','Field','objectType','Field'),(192,4,'objectDomain','fields','objectDomain','fields'),(193,4,'editActive','','editActive',''),(194,4,'container_class','','container_class',''),(195,4,'element_class','','element_class',''),(196,4,'wrap_styles_background-color','','wrap_styles_background-color',''),(197,4,'wrap_styles_border','','wrap_styles_border',''),(198,4,'wrap_styles_border-style','','wrap_styles_border-style',''),(199,4,'wrap_styles_border-color','','wrap_styles_border-color',''),(200,4,'wrap_styles_color','','wrap_styles_color',''),(201,4,'wrap_styles_height','','wrap_styles_height',''),(202,4,'wrap_styles_width','','wrap_styles_width',''),(203,4,'wrap_styles_font-size','','wrap_styles_font-size',''),(204,4,'wrap_styles_margin','','wrap_styles_margin',''),(205,4,'wrap_styles_padding','','wrap_styles_padding',''),(206,4,'wrap_styles_display','','wrap_styles_display',''),(207,4,'wrap_styles_float','','wrap_styles_float',''),(208,4,'wrap_styles_show_advanced_css','0','wrap_styles_show_advanced_css','0'),(209,4,'wrap_styles_advanced','','wrap_styles_advanced',''),(210,4,'label_styles_background-color','','label_styles_background-color',''),(211,4,'label_styles_border','','label_styles_border',''),(212,4,'label_styles_border-style','','label_styles_border-style',''),(213,4,'label_styles_border-color','','label_styles_border-color',''),(214,4,'label_styles_color','','label_styles_color',''),(215,4,'label_styles_height','','label_styles_height',''),(216,4,'label_styles_width','','label_styles_width',''),(217,4,'label_styles_font-size','','label_styles_font-size',''),(218,4,'label_styles_margin','','label_styles_margin',''),(219,4,'label_styles_padding','','label_styles_padding',''),(220,4,'label_styles_display','','label_styles_display',''),(221,4,'label_styles_float','','label_styles_float',''),(222,4,'label_styles_show_advanced_css','0','label_styles_show_advanced_css','0'),(223,4,'label_styles_advanced','','label_styles_advanced',''),(224,4,'element_styles_background-color','','element_styles_background-color',''),(225,4,'element_styles_border','','element_styles_border',''),(226,4,'element_styles_border-style','','element_styles_border-style',''),(227,4,'element_styles_border-color','','element_styles_border-color',''),(228,4,'element_styles_color','','element_styles_color',''),(229,4,'element_styles_height','','element_styles_height',''),(230,4,'element_styles_width','','element_styles_width',''),(231,4,'element_styles_font-size','','element_styles_font-size',''),(232,4,'element_styles_margin','','element_styles_margin',''),(233,4,'element_styles_padding','','element_styles_padding',''),(234,4,'element_styles_display','','element_styles_display',''),(235,4,'element_styles_float','','element_styles_float',''),(236,4,'element_styles_show_advanced_css','0','element_styles_show_advanced_css','0'),(237,4,'element_styles_advanced','','element_styles_advanced',''),(238,4,'submit_element_hover_styles_background-color','','submit_element_hover_styles_background-color',''),(239,4,'submit_element_hover_styles_border','','submit_element_hover_styles_border',''),(240,4,'submit_element_hover_styles_border-style','','submit_element_hover_styles_border-style',''),(241,4,'submit_element_hover_styles_border-color','','submit_element_hover_styles_border-color',''),(242,4,'submit_element_hover_styles_color','','submit_element_hover_styles_color',''),(243,4,'submit_element_hover_styles_height','','submit_element_hover_styles_height',''),(244,4,'submit_element_hover_styles_width','','submit_element_hover_styles_width',''),(245,4,'submit_element_hover_styles_font-size','','submit_element_hover_styles_font-size',''),(246,4,'submit_element_hover_styles_margin','','submit_element_hover_styles_margin',''),(247,4,'submit_element_hover_styles_padding','','submit_element_hover_styles_padding',''),(248,4,'submit_element_hover_styles_display','','submit_element_hover_styles_display',''),(249,4,'submit_element_hover_styles_float','','submit_element_hover_styles_float',''),(250,4,'submit_element_hover_styles_show_advanced_css','0','submit_element_hover_styles_show_advanced_css','0'),(251,4,'submit_element_hover_styles_advanced','','submit_element_hover_styles_advanced',''),(252,4,'cellcid','c3287','cellcid','c3287'),(253,1,'field_label','Name','field_label','Name'),(254,1,'field_key','name','field_key','name'),(255,2,'field_label','Email','field_label','Email'),(256,2,'field_key','email','field_key','email'),(257,3,'field_label','Message','field_label','Message'),(258,3,'field_key','message','field_key','message'),(259,4,'field_label','Submit','field_label','Submit'),(260,4,'field_key','submit','field_key','submit'),(261,1,'label','Your Name','label','Your Name'),(262,1,'key','your_name_1612184773783','key','your_name_1612184773783'),(263,1,'type','textbox','type','textbox'),(264,1,'created_at','2021-01-24 23:46:03','created_at','2021-01-24 23:46:03'),(265,1,'custom_name_attribute','','custom_name_attribute',''),(266,1,'personally_identifiable','','personally_identifiable',''),(267,1,'value','','value',''),(268,1,'drawerDisabled','','drawerDisabled',''),(269,2,'label','Your Email Address','label','Your Email Address'),(270,2,'key','your_email_address_1612184815795','key','your_email_address_1612184815795'),(271,2,'type','email','type','email'),(272,2,'created_at','2021-01-24 23:46:04','created_at','2021-01-24 23:46:04'),(273,2,'custom_name_attribute','email','custom_name_attribute','email'),(274,2,'personally_identifiable','1','personally_identifiable','1'),(275,2,'value','','value',''),(276,2,'drawerDisabled','','drawerDisabled',''),(277,5,'editActive','','editActive',''),(278,5,'order','3','order','3'),(279,5,'label','Phone Number','label','Phone Number'),(280,5,'type','phone','type','phone'),(281,5,'key','phone_number_1612184870684','key','phone_number_1612184870684'),(282,5,'label_pos','default','label_pos','default'),(283,5,'required','','required',''),(284,5,'default','','default',''),(285,5,'placeholder','','placeholder',''),(286,5,'container_class','','container_class',''),(287,5,'element_class','','element_class',''),(288,5,'input_limit','','input_limit',''),(289,5,'input_limit_type','characters','input_limit_type','characters'),(290,5,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(291,5,'manual_key','','manual_key',''),(292,5,'admin_label','','admin_label',''),(293,5,'help_text','','help_text',''),(294,5,'mask','','mask',''),(295,5,'custom_mask','','custom_mask',''),(296,5,'custom_name_attribute','phone','custom_name_attribute','phone'),(297,5,'personally_identifiable','1','personally_identifiable','1'),(298,5,'value','','value',''),(299,5,'drawerDisabled','','drawerDisabled',''),(300,6,'editActive','','editActive',''),(301,6,'order','4','order','4'),(302,6,'label','Business Name','label','Business Name'),(303,6,'type','textbox','type','textbox'),(304,6,'key','business_name_1612184896471','key','business_name_1612184896471'),(305,6,'label_pos','default','label_pos','default'),(306,6,'required','','required',''),(307,6,'default','','default',''),(308,6,'placeholder','','placeholder',''),(309,6,'container_class','','container_class',''),(310,6,'element_class','','element_class',''),(311,6,'input_limit','','input_limit',''),(312,6,'input_limit_type','characters','input_limit_type','characters'),(313,6,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(314,6,'manual_key','','manual_key',''),(315,6,'admin_label','','admin_label',''),(316,6,'help_text','','help_text',''),(317,6,'desc_text','<p>The name of the business or chain that needs cleaning</p>','desc_text','<p>The name of the business or chain that needs cleaning</p>'),(318,6,'mask','','mask',''),(319,6,'custom_mask','','custom_mask',''),(320,6,'custom_name_attribute','','custom_name_attribute',''),(321,6,'personally_identifiable','','personally_identifiable',''),(322,6,'value','','value',''),(323,6,'drawerDisabled','','drawerDisabled',''),(324,7,'editActive','','editActive',''),(325,7,'order','5','order','5'),(326,7,'label','Street Address','label','Street Address'),(327,7,'type','address','type','address'),(328,7,'key','street_address_1612184986393','key','street_address_1612184986393'),(329,7,'label_pos','default','label_pos','default'),(330,7,'required','','required',''),(331,7,'default','','default',''),(332,7,'placeholder','','placeholder',''),(333,7,'container_class','','container_class',''),(334,7,'element_class','','element_class',''),(335,7,'input_limit','','input_limit',''),(336,7,'input_limit_type','characters','input_limit_type','characters'),(337,7,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(338,7,'manual_key','','manual_key',''),(339,7,'admin_label','','admin_label',''),(340,7,'help_text','','help_text',''),(341,7,'mask','','mask',''),(342,7,'custom_mask','','custom_mask',''),(343,7,'custom_name_attribute','address','custom_name_attribute','address'),(344,7,'personally_identifiable','1','personally_identifiable','1'),(345,7,'value','','value',''),(346,8,'editActive','','editActive',''),(347,8,'order','6','order','6'),(348,8,'label','Street Address Line 2','label','Street Address Line 2'),(349,8,'type','address','type','address'),(350,8,'key','street_address_line_2_1612185017020','key','street_address_line_2_1612185017020'),(351,8,'label_pos','default','label_pos','default'),(352,8,'required','','required',''),(353,8,'default','','default',''),(354,8,'placeholder','','placeholder',''),(355,8,'container_class','','container_class',''),(356,8,'element_class','','element_class',''),(357,8,'input_limit','','input_limit',''),(358,8,'input_limit_type','characters','input_limit_type','characters'),(359,8,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(360,8,'manual_key','','manual_key',''),(361,8,'admin_label','','admin_label',''),(362,8,'help_text','','help_text',''),(363,8,'mask','','mask',''),(364,8,'custom_mask','','custom_mask',''),(365,8,'custom_name_attribute','address','custom_name_attribute','address'),(366,8,'personally_identifiable','1','personally_identifiable','1'),(367,8,'value','','value',''),(368,9,'editActive','','editActive',''),(369,9,'order','7','order','7'),(370,9,'label','City','label','City'),(371,9,'type','city','type','city'),(372,9,'key','city_1612184941854','key','city_1612184941854'),(373,9,'label_pos','default','label_pos','default'),(374,9,'required','','required',''),(375,9,'default','','default',''),(376,9,'placeholder','','placeholder',''),(377,9,'container_class','','container_class',''),(378,9,'element_class','','element_class',''),(379,9,'input_limit','','input_limit',''),(380,9,'input_limit_type','characters','input_limit_type','characters'),(381,9,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(382,9,'manual_key','','manual_key',''),(383,9,'admin_label','','admin_label',''),(384,9,'help_text','','help_text',''),(385,9,'mask','','mask',''),(386,9,'custom_mask','','custom_mask',''),(387,9,'custom_name_attribute','city','custom_name_attribute','city'),(388,9,'personally_identifiable','','personally_identifiable',''),(389,9,'value','','value',''),(390,10,'editActive','','editActive',''),(391,10,'order','8','order','8'),(392,10,'label','State','label','State'),(393,10,'type','liststate','type','liststate'),(394,10,'key','state_1612184970661','key','state_1612184970661'),(395,10,'label_pos','default','label_pos','default'),(396,10,'required','','required',''),(397,10,'options','a:55:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"- Select State -\";s:5:\"value\";s:0:\"\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:54;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:54;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}','options','a:55:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"- Select State -\";s:5:\"value\";s:0:\"\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:54;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:54;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}'),(398,10,'container_class','','container_class',''),(399,10,'element_class','','element_class',''),(400,10,'admin_label','','admin_label',''),(401,10,'help_text','','help_text',''),(402,11,'editActive','','editActive',''),(403,11,'order','9','order','9'),(404,11,'label','Zip Code','label','Zip Code'),(405,11,'type','zip','type','zip'),(406,11,'key','zip_code_1612184978127','key','zip_code_1612184978127'),(407,11,'label_pos','default','label_pos','default'),(408,11,'required','','required',''),(409,11,'default','','default',''),(410,11,'placeholder','','placeholder',''),(411,11,'container_class','','container_class',''),(412,11,'element_class','','element_class',''),(413,11,'input_limit','','input_limit',''),(414,11,'input_limit_type','characters','input_limit_type','characters'),(415,11,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(416,11,'manual_key','','manual_key',''),(417,11,'admin_label','','admin_label',''),(418,11,'help_text','','help_text',''),(419,11,'mask','','mask',''),(420,11,'custom_mask','','custom_mask',''),(421,11,'custom_name_attribute','zip','custom_name_attribute','zip'),(422,11,'personally_identifiable','','personally_identifiable',''),(423,11,'value','','value',''),(424,12,'editActive','','editActive',''),(425,12,'order','10','order','10'),(426,12,'label','Approximately How Many Square Feet To Be Cleaned','label','Approximately How Many Square Feet To Be Cleaned'),(427,12,'type','textbox','type','textbox'),(428,12,'key','approximately_how_many_square_feet_to_be_cleaned_1612185182861','key','approximately_how_many_square_feet_to_be_cleaned_1612185182861'),(429,12,'label_pos','default','label_pos','default'),(430,12,'required','','required',''),(431,12,'default','','default',''),(432,12,'placeholder','','placeholder',''),(433,12,'container_class','','container_class',''),(434,12,'element_class','','element_class',''),(435,12,'input_limit','','input_limit',''),(436,12,'input_limit_type','characters','input_limit_type','characters'),(437,12,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(438,12,'manual_key','','manual_key',''),(439,12,'admin_label','','admin_label',''),(440,12,'help_text','','help_text',''),(441,12,'desc_text','<p>Doesn\'t have to be exact but a ballpark range will suffice</p>','desc_text','<p>Doesn\'t have to be exact but a ballpark range will suffice</p>'),(442,12,'mask','','mask',''),(443,12,'custom_mask','','custom_mask',''),(444,12,'custom_name_attribute','','custom_name_attribute',''),(445,12,'personally_identifiable','','personally_identifiable',''),(446,12,'value','','value',''),(447,12,'drawerDisabled','','drawerDisabled',''),(448,13,'editActive','','editActive',''),(449,13,'order','11','order','11'),(450,13,'label','Frequency of Cleaning','label','Frequency of Cleaning'),(451,13,'type','textbox','type','textbox'),(452,13,'key','frequency_of_cleaning_1612185610965','key','frequency_of_cleaning_1612185610965'),(453,13,'label_pos','default','label_pos','default'),(454,13,'required','','required',''),(455,13,'default','','default',''),(456,13,'placeholder','','placeholder',''),(457,13,'container_class','','container_class',''),(458,13,'element_class','','element_class',''),(459,13,'input_limit','','input_limit',''),(460,13,'input_limit_type','characters','input_limit_type','characters'),(461,13,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(462,13,'manual_key','','manual_key',''),(463,13,'admin_label','','admin_label',''),(464,13,'help_text','','help_text',''),(465,13,'desc_text','<p>How many times per week would you like to have cleaners onsite?</p>','desc_text','<p>How many times per week would you like to have cleaners onsite?</p>'),(466,13,'mask','','mask',''),(467,13,'custom_mask','','custom_mask',''),(468,13,'custom_name_attribute','','custom_name_attribute',''),(469,13,'personally_identifiable','','personally_identifiable',''),(470,13,'value','','value',''),(471,13,'drawerDisabled','','drawerDisabled',''),(509,16,'editActive','','editActive',''),(510,16,'order','14','order','14'),(511,16,'label','Building Type','label','Building Type'),(512,16,'type','textbox','type','textbox'),(513,16,'key','building_type_1612185844992','key','building_type_1612185844992'),(514,16,'label_pos','default','label_pos','default'),(515,16,'required','','required',''),(516,16,'default','','default',''),(517,16,'placeholder','','placeholder',''),(518,16,'container_class','','container_class',''),(519,16,'element_class','','element_class',''),(520,16,'input_limit','','input_limit',''),(521,16,'input_limit_type','characters','input_limit_type','characters'),(522,16,'input_limit_msg','Character(s) left','input_limit_msg','Character(s) left'),(523,16,'manual_key','','manual_key',''),(524,16,'admin_label','','admin_label',''),(525,16,'help_text','','help_text',''),(526,16,'desc_text','<p>What type of structure is this? Retail, Restaurant, Bar, Healthcare Facility, Office Building etc.</p>','desc_text','<p>What type of structure is this? Retail, Restaurant, Bar, Healthcare Facility, Office Building etc.</p>'),(527,16,'mask','','mask',''),(528,16,'custom_mask','','custom_mask',''),(529,16,'custom_name_attribute','','custom_name_attribute',''),(530,16,'personally_identifiable','','personally_identifiable',''),(531,16,'value','','value',''),(532,16,'drawerDisabled','','drawerDisabled',''),(533,3,'label','Scope of Work','label','Scope of Work'),(534,3,'key','scope_of_work_1612185073399','key','scope_of_work_1612185073399'),(535,3,'type','textarea','type','textarea'),(536,3,'created_at','2021-01-24 23:46:04','created_at','2021-01-24 23:46:04'),(537,3,'value','','value',''),(538,3,'drawerDisabled','','drawerDisabled',''),(539,4,'label','Submit','label','Submit'),(540,4,'key','submit_1612186763390','key','submit_1612186763390'),(541,4,'type','submit','type','submit'),(542,4,'created_at','2021-01-24 23:46:05','created_at','2021-01-24 23:46:05'),(543,4,'drawerDisabled','','drawerDisabled','');
/*!40000 ALTER TABLE `wp_nf3_field_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_fields`
--

DROP TABLE IF EXISTS `wp_nf3_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `label` longtext,
  `key` longtext,
  `type` longtext,
  `parent_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `field_label` longtext,
  `field_key` longtext,
  `order` int(11) DEFAULT NULL,
  `required` bit(1) DEFAULT NULL,
  `default_value` longtext,
  `label_pos` varchar(15) DEFAULT NULL,
  `personally_identifiable` bit(1) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_fields`
--

LOCK TABLES `wp_nf3_fields` WRITE;
/*!40000 ALTER TABLE `wp_nf3_fields` DISABLE KEYS */;
INSERT INTO `wp_nf3_fields` VALUES (1,'Your Name','your_name_1612184773783','textbox',1,'2021-02-01 13:24:50','2021-01-24 23:46:03','Your Name','your_name_1612184773783',1,'','','above','\0'),(2,'Your Email Address','your_email_address_1612184815795','email',1,'2021-02-01 13:24:50','2021-01-24 23:46:04','Your Email Address','your_email_address_1612184815795',2,'','','above',''),(3,'Scope of Work','scope_of_work_1612185073399','textarea',1,'2021-02-01 13:24:50','2021-01-24 23:46:04','Scope of Work','scope_of_work_1612185073399',15,'','','above','\0'),(4,'Submit','submit_1612186763390','submit',1,'2021-02-01 13:39:30','2021-01-24 23:46:05','Submit','submit_1612186763390',16,'\0','','','\0'),(5,'Phone Number','phone_number_1612184870684','phone',1,'2021-02-01 13:24:50',NULL,'Phone Number','phone_number_1612184870684',3,'\0','','default',''),(6,'Business Name','business_name_1612184896471','textbox',1,'2021-02-01 13:24:50',NULL,'Business Name','business_name_1612184896471',4,'\0','','default','\0'),(7,'Street Address','street_address_1612184986393','address',1,'2021-02-01 13:24:50',NULL,'Street Address','street_address_1612184986393',5,'\0','','default',''),(8,'Street Address Line 2','street_address_line_2_1612185017020','address',1,'2021-02-01 13:24:50',NULL,'Street Address Line 2','street_address_line_2_1612185017020',6,'\0','','default',''),(9,'City','city_1612184941854','city',1,'2021-02-01 13:24:50',NULL,'City','city_1612184941854',7,'\0','','default','\0'),(10,'State','state_1612184970661','liststate',1,'2021-02-01 13:24:50',NULL,'State','state_1612184970661',8,'\0','','default','\0'),(11,'Zip Code','zip_code_1612184978127','zip',1,'2021-02-01 13:24:50',NULL,'Zip Code','zip_code_1612184978127',9,'\0','','default','\0'),(12,'Approximately How Many Square Feet To Be Cleaned','approximately_how_many_square_feet_to_be_cleaned_1612185182861','textbox',1,'2021-02-01 13:24:50',NULL,'Approximately How Many Square Feet To Be Cleaned','approximately_how_many_square_feet_to_be_cleaned_1612185182861',10,'\0','','default','\0'),(13,'Frequency of Cleaning','frequency_of_cleaning_1612185610965','textbox',1,'2021-02-01 13:24:50',NULL,'Frequency of Cleaning','frequency_of_cleaning_1612185610965',11,'\0','','default','\0'),(16,'Building Type','building_type_1612185844992','textbox',1,'2021-02-01 13:24:50',NULL,'Building Type','building_type_1612185844992',14,'\0','','default','\0');
/*!40000 ALTER TABLE `wp_nf3_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_form_meta`
--

DROP TABLE IF EXISTS `wp_nf3_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_form_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=115 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_form_meta`
--

LOCK TABLES `wp_nf3_form_meta` WRITE;
/*!40000 ALTER TABLE `wp_nf3_form_meta` DISABLE KEYS */;
INSERT INTO `wp_nf3_form_meta` VALUES (1,1,'key','','key',''),(2,1,'created_at','2021-01-24 23:46:02','created_at','2021-01-24 23:46:02'),(3,1,'default_label_pos','above','default_label_pos','above'),(4,1,'conditions','a:0:{}','conditions','a:0:{}'),(5,1,'objectType','Form Setting','objectType','Form Setting'),(6,1,'editActive','1','editActive','1'),(7,1,'show_title','1','show_title','1'),(8,1,'clear_complete','1','clear_complete','1'),(9,1,'hide_complete','1','hide_complete','1'),(10,1,'wrapper_class','','wrapper_class',''),(11,1,'element_class','','element_class',''),(12,1,'add_submit','1','add_submit','1'),(13,1,'logged_in','','logged_in',''),(14,1,'not_logged_in_msg','','not_logged_in_msg',''),(15,1,'sub_limit_number','','sub_limit_number',''),(16,1,'sub_limit_msg','','sub_limit_msg',''),(17,1,'calculations','a:0:{}','calculations','a:0:{}'),(18,1,'formContentData','a:14:{i:0;s:23:\"your_name_1612184773783\";i:1;s:32:\"your_email_address_1612184815795\";i:2;s:26:\"phone_number_1612184870684\";i:3;s:27:\"business_name_1612184896471\";i:4;s:28:\"street_address_1612184986393\";i:5;s:35:\"street_address_line_2_1612185017020\";i:6;s:18:\"city_1612184941854\";i:7;s:19:\"state_1612184970661\";i:8;s:22:\"zip_code_1612184978127\";i:9;s:62:\"approximately_how_many_square_feet_to_be_cleaned_1612185182861\";i:10;s:35:\"frequency_of_cleaning_1612185610965\";i:11;s:27:\"building_type_1612185844992\";i:12;s:27:\"scope_of_work_1612185073399\";i:13;s:20:\"submit_1612186763390\";}','formContentData','a:14:{i:0;s:23:\"your_name_1612184773783\";i:1;s:32:\"your_email_address_1612184815795\";i:2;s:26:\"phone_number_1612184870684\";i:3;s:27:\"business_name_1612184896471\";i:4;s:28:\"street_address_1612184986393\";i:5;s:35:\"street_address_line_2_1612185017020\";i:6;s:18:\"city_1612184941854\";i:7;s:19:\"state_1612184970661\";i:8;s:22:\"zip_code_1612184978127\";i:9;s:62:\"approximately_how_many_square_feet_to_be_cleaned_1612185182861\";i:10;s:35:\"frequency_of_cleaning_1612185610965\";i:11;s:27:\"building_type_1612185844992\";i:12;s:27:\"scope_of_work_1612185073399\";i:13;s:20:\"submit_1612186763390\";}'),(19,1,'container_styles_background-color','','container_styles_background-color',''),(20,1,'container_styles_border','','container_styles_border',''),(21,1,'container_styles_border-style','','container_styles_border-style',''),(22,1,'container_styles_border-color','','container_styles_border-color',''),(23,1,'container_styles_color','','container_styles_color',''),(24,1,'container_styles_height','','container_styles_height',''),(25,1,'container_styles_width','','container_styles_width',''),(26,1,'container_styles_font-size','','container_styles_font-size',''),(27,1,'container_styles_margin','','container_styles_margin',''),(28,1,'container_styles_padding','','container_styles_padding',''),(29,1,'container_styles_display','','container_styles_display',''),(30,1,'container_styles_float','','container_styles_float',''),(31,1,'container_styles_show_advanced_css','0','container_styles_show_advanced_css','0'),(32,1,'container_styles_advanced','','container_styles_advanced',''),(33,1,'title_styles_background-color','','title_styles_background-color',''),(34,1,'title_styles_border','','title_styles_border',''),(35,1,'title_styles_border-style','','title_styles_border-style',''),(36,1,'title_styles_border-color','','title_styles_border-color',''),(37,1,'title_styles_color','','title_styles_color',''),(38,1,'title_styles_height','','title_styles_height',''),(39,1,'title_styles_width','','title_styles_width',''),(40,1,'title_styles_font-size','','title_styles_font-size',''),(41,1,'title_styles_margin','','title_styles_margin',''),(42,1,'title_styles_padding','','title_styles_padding',''),(43,1,'title_styles_display','','title_styles_display',''),(44,1,'title_styles_float','','title_styles_float',''),(45,1,'title_styles_show_advanced_css','0','title_styles_show_advanced_css','0'),(46,1,'title_styles_advanced','','title_styles_advanced',''),(47,1,'row_styles_background-color','','row_styles_background-color',''),(48,1,'row_styles_border','','row_styles_border',''),(49,1,'row_styles_border-style','','row_styles_border-style',''),(50,1,'row_styles_border-color','','row_styles_border-color',''),(51,1,'row_styles_color','','row_styles_color',''),(52,1,'row_styles_height','','row_styles_height',''),(53,1,'row_styles_width','','row_styles_width',''),(54,1,'row_styles_font-size','','row_styles_font-size',''),(55,1,'row_styles_margin','','row_styles_margin',''),(56,1,'row_styles_padding','','row_styles_padding',''),(57,1,'row_styles_display','','row_styles_display',''),(58,1,'row_styles_show_advanced_css','0','row_styles_show_advanced_css','0'),(59,1,'row_styles_advanced','','row_styles_advanced',''),(60,1,'row-odd_styles_background-color','','row-odd_styles_background-color',''),(61,1,'row-odd_styles_border','','row-odd_styles_border',''),(62,1,'row-odd_styles_border-style','','row-odd_styles_border-style',''),(63,1,'row-odd_styles_border-color','','row-odd_styles_border-color',''),(64,1,'row-odd_styles_color','','row-odd_styles_color',''),(65,1,'row-odd_styles_height','','row-odd_styles_height',''),(66,1,'row-odd_styles_width','','row-odd_styles_width',''),(67,1,'row-odd_styles_font-size','','row-odd_styles_font-size',''),(68,1,'row-odd_styles_margin','','row-odd_styles_margin',''),(69,1,'row-odd_styles_padding','','row-odd_styles_padding',''),(70,1,'row-odd_styles_display','','row-odd_styles_display',''),(71,1,'row-odd_styles_show_advanced_css','0','row-odd_styles_show_advanced_css','0'),(72,1,'row-odd_styles_advanced','','row-odd_styles_advanced',''),(73,1,'success-msg_styles_background-color','','success-msg_styles_background-color',''),(74,1,'success-msg_styles_border','','success-msg_styles_border',''),(75,1,'success-msg_styles_border-style','','success-msg_styles_border-style',''),(76,1,'success-msg_styles_border-color','','success-msg_styles_border-color',''),(77,1,'success-msg_styles_color','','success-msg_styles_color',''),(78,1,'success-msg_styles_height','','success-msg_styles_height',''),(79,1,'success-msg_styles_width','','success-msg_styles_width',''),(80,1,'success-msg_styles_font-size','','success-msg_styles_font-size',''),(81,1,'success-msg_styles_margin','','success-msg_styles_margin',''),(82,1,'success-msg_styles_padding','','success-msg_styles_padding',''),(83,1,'success-msg_styles_display','','success-msg_styles_display',''),(84,1,'success-msg_styles_show_advanced_css','0','success-msg_styles_show_advanced_css','0'),(85,1,'success-msg_styles_advanced','','success-msg_styles_advanced',''),(86,1,'error_msg_styles_background-color','','error_msg_styles_background-color',''),(87,1,'error_msg_styles_border','','error_msg_styles_border',''),(88,1,'error_msg_styles_border-style','','error_msg_styles_border-style',''),(89,1,'error_msg_styles_border-color','','error_msg_styles_border-color',''),(90,1,'error_msg_styles_color','','error_msg_styles_color',''),(91,1,'error_msg_styles_height','','error_msg_styles_height',''),(92,1,'error_msg_styles_width','','error_msg_styles_width',''),(93,1,'error_msg_styles_font-size','','error_msg_styles_font-size',''),(94,1,'error_msg_styles_margin','','error_msg_styles_margin',''),(95,1,'error_msg_styles_padding','','error_msg_styles_padding',''),(96,1,'error_msg_styles_display','','error_msg_styles_display',''),(97,1,'error_msg_styles_show_advanced_css','0','error_msg_styles_show_advanced_css','0'),(98,1,'error_msg_styles_advanced','','error_msg_styles_advanced',''),(99,1,'allow_public_link','0','allow_public_link','0'),(100,1,'embed_form','','embed_form',''),(101,1,'currency','','currency',''),(102,1,'unique_field_error','A form with this value has already been submitted.','unique_field_error','A form with this value has already been submitted.'),(103,1,'changeEmailErrorMsg','','changeEmailErrorMsg',''),(104,1,'changeDateErrorMsg','','changeDateErrorMsg',''),(105,1,'confirmFieldErrorMsg','','confirmFieldErrorMsg',''),(106,1,'fieldNumberNumMinError','','fieldNumberNumMinError',''),(107,1,'fieldNumberNumMaxError','','fieldNumberNumMaxError',''),(108,1,'fieldNumberIncrementBy','','fieldNumberIncrementBy',''),(109,1,'formErrorsCorrectErrors','','formErrorsCorrectErrors',''),(110,1,'validateRequiredField','','validateRequiredField',''),(111,1,'honeypotHoneypotError','','honeypotHoneypotError',''),(112,1,'fieldsMarkedRequired','','fieldsMarkedRequired',''),(113,1,'drawerDisabled','','drawerDisabled',''),(114,1,'_seq_num','2','_seq_num','2');
/*!40000 ALTER TABLE `wp_nf3_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_forms`
--

DROP TABLE IF EXISTS `wp_nf3_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` longtext,
  `key` longtext,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `views` int(11) DEFAULT NULL,
  `subs` int(11) DEFAULT NULL,
  `form_title` longtext,
  `default_label_pos` varchar(15) DEFAULT NULL,
  `show_title` bit(1) DEFAULT NULL,
  `clear_complete` bit(1) DEFAULT NULL,
  `hide_complete` bit(1) DEFAULT NULL,
  `logged_in` bit(1) DEFAULT NULL,
  `seq_num` int(11) DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_forms`
--

LOCK TABLES `wp_nf3_forms` WRITE;
/*!40000 ALTER TABLE `wp_nf3_forms` DISABLE KEYS */;
INSERT INTO `wp_nf3_forms` VALUES (1,'Contact Us',NULL,'2021-03-12 20:18:20','2021-01-24 23:46:02',NULL,NULL,'Contact Us','above','','','','\0',2);
/*!40000 ALTER TABLE `wp_nf3_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf3_object_meta`
--

DROP TABLE IF EXISTS `wp_nf3_object_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_object_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) NOT NULL,
  `key` longtext NOT NULL,
  `value` longtext,
  `meta_key` longtext,
  `meta_value` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_object_meta`
--

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

--
-- Table structure for table `wp_nf3_objects`
--

DROP TABLE IF EXISTS `wp_nf3_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_objects` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` longtext,
  `title` longtext,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  `object_title` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_objects`
--

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

--
-- Table structure for table `wp_nf3_relationships`
--

DROP TABLE IF EXISTS `wp_nf3_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_relationships` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `child_id` int(11) NOT NULL,
  `child_type` longtext NOT NULL,
  `parent_id` int(11) NOT NULL,
  `parent_type` longtext NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_relationships`
--

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

--
-- Table structure for table `wp_nf3_upgrades`
--

DROP TABLE IF EXISTS `wp_nf3_upgrades`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf3_upgrades` (
  `id` int(11) NOT NULL,
  `cache` longtext,
  `stage` int(11) NOT NULL DEFAULT '0',
  `maintenance` bit(1) DEFAULT b'0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf3_upgrades`
--

LOCK TABLES `wp_nf3_upgrades` WRITE;
/*!40000 ALTER TABLE `wp_nf3_upgrades` DISABLE KEYS */;
INSERT INTO `wp_nf3_upgrades` VALUES (1,'a:7:{s:2:\"id\";i:1;s:20:\"show_publish_options\";b:0;s:6:\"fields\";a:14:{i:0;a:2:{s:8:\"settings\";a:73:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:1;s:5:\"label\";s:9:\"Your Name\";s:3:\"key\";s:23:\"your_name_1612184773783\";s:4:\"type\";s:7:\"textbox\";s:10:\"created_at\";s:19:\"2021-01-24 23:46:03\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:28:\"<p>First and Last Please</p>\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3277\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:1;}i:1;a:2:{s:8:\"settings\";a:65:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:2;s:5:\"label\";s:18:\"Your Email Address\";s:3:\"key\";s:32:\"your_email_address_1612184815795\";s:4:\"type\";s:5:\"email\";s:10:\"created_at\";s:19:\"2021-01-24 23:46:04\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:103:\"<p>Don\'t worry, we won\'t spam you or share your data, ever! We understand how annoying that can be!</p>\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3281\";s:21:\"custom_name_attribute\";s:5:\"email\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:2;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:3;s:5:\"label\";s:12:\"Phone Number\";s:4:\"type\";s:5:\"phone\";s:3:\"key\";s:26:\"phone_number_1612184870684\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:5:\"phone\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:1:\"5\";}i:3;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:4;s:5:\"label\";s:13:\"Business Name\";s:4:\"type\";s:7:\"textbox\";s:3:\"key\";s:27:\"business_name_1612184896471\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:60:\"<p>The name of the business or chain that needs cleaning</p>\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:1:\"6\";}i:4;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:5;s:5:\"label\";s:14:\"Street Address\";s:4:\"type\";s:7:\"address\";s:3:\"key\";s:28:\"street_address_1612184986393\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:7:\"address\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";s:1:\"7\";}i:5;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:6;s:5:\"label\";s:21:\"Street Address Line 2\";s:4:\"type\";s:7:\"address\";s:3:\"key\";s:35:\"street_address_line_2_1612185017020\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:7:\"address\";s:23:\"personally_identifiable\";s:1:\"1\";s:5:\"value\";s:0:\"\";}s:2:\"id\";s:1:\"8\";}i:6;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:7;s:5:\"label\";s:4:\"City\";s:4:\"type\";s:4:\"city\";s:3:\"key\";s:18:\"city_1612184941854\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:4:\"city\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:2:\"id\";s:1:\"9\";}i:7;a:2:{s:8:\"settings\";a:14:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:8;s:5:\"label\";s:5:\"State\";s:4:\"type\";s:9:\"liststate\";s:3:\"key\";s:19:\"state_1612184970661\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"options\";a:55:{i:0;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:16:\"- Select State -\";s:5:\"value\";s:0:\"\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:1;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:2;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:3;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:3;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:4;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:4;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:5;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:5;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:6;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:6;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:7;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:7;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:8;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:8;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:9;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:9;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:10;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:10;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:11;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:11;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:12;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:12;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:13;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:13;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:14;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:14;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:15;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:15;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:16;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:16;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:17;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:17;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:18;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:18;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:19;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:19;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:20;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:20;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:21;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:21;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:22;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:22;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:23;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:23;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:24;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:24;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:25;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:25;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:26;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:26;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:27;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:27;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:28;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:28;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:29;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:29;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:30;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:30;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:31;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:31;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:32;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:32;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:33;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:33;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:34;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:34;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:35;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:35;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:36;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:36;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:37;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:37;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:38;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:38;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:39;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:39;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:40;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:40;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:41;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:41;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:42;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:42;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:43;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:43;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:44;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:44;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:45;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:45;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:46;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:46;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:47;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:47;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:48;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:48;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:49;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:49;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:50;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:50;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:51;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:13:\"Washington DC\";s:5:\"value\";s:2:\"DC\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:51;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:52;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:51:\"ARMED FORCES AFRICA \\ CANADA \\ EUROPE \\ MIDDLE EAST\";s:5:\"value\";s:2:\"AE\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:52;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:53;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:36:\"ARMED FORCES AMERICA (EXCEPT CANADA)\";s:5:\"value\";s:2:\"AA\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:53;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}i:54;a:8:{s:6:\"errors\";a:0:{}s:11:\"max_options\";i:0;s:5:\"label\";s:20:\"ARMED FORCES PACIFIC\";s:5:\"value\";s:2:\"AP\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:54;s:12:\"settingModel\";a:10:{s:8:\"settings\";b:0;s:15:\"hide_merge_tags\";b:0;s:5:\"error\";b:0;s:4:\"name\";s:7:\"options\";s:4:\"type\";s:15:\"option-repeater\";s:5:\"label\";s:159:\"Options <a href=\"#\" class=\"nf-add-new\">Add New</a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"></i> Import</a>\";s:5:\"width\";s:4:\"full\";s:5:\"group\";s:0:\"\";s:5:\"value\";a:3:{i:0;a:5:{s:5:\"label\";s:3:\"One\";s:5:\"value\";s:3:\"one\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:0;}i:1;a:5:{s:5:\"label\";s:3:\"Two\";s:5:\"value\";s:3:\"two\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:1;}i:2;a:5:{s:5:\"label\";s:5:\"Three\";s:5:\"value\";s:5:\"three\";s:4:\"calc\";s:0:\"\";s:8:\"selected\";i:0;s:5:\"order\";i:2;}}s:7:\"columns\";a:4:{s:5:\"label\";a:2:{s:6:\"header\";s:5:\"Label\";s:7:\"default\";s:0:\"\";}s:5:\"value\";a:2:{s:6:\"header\";s:5:\"Value\";s:7:\"default\";s:0:\"\";}s:4:\"calc\";a:2:{s:6:\"header\";s:10:\"Calc Value\";s:7:\"default\";s:0:\"\";}s:8:\"selected\";a:2:{s:6:\"header\";s:45:\"<span class=\"dashicons dashicons-yes\"></span>\";s:7:\"default\";i:0;}}}}}s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";}s:2:\"id\";s:2:\"10\";}i:8;a:2:{s:8:\"settings\";a:24:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:9;s:5:\"label\";s:8:\"Zip Code\";s:4:\"type\";s:3:\"zip\";s:3:\"key\";s:22:\"zip_code_1612184978127\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:3:\"zip\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:2:\"id\";s:2:\"11\";}i:9;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:10;s:5:\"label\";s:48:\"Approximately How Many Square Feet To Be Cleaned\";s:4:\"type\";s:7:\"textbox\";s:3:\"key\";s:62:\"approximately_how_many_square_feet_to_be_cleaned_1612185182861\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:65:\"<p>Doesn\'t have to be exact but a ballpark range will suffice</p>\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:2:\"12\";}i:10;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:11;s:5:\"label\";s:21:\"Frequency of Cleaning\";s:4:\"type\";s:7:\"textbox\";s:3:\"key\";s:35:\"frequency_of_cleaning_1612185610965\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:70:\"<p>How many times per week would you like to have cleaners onsite?</p>\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:2:\"13\";}i:11;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:14;s:5:\"label\";s:13:\"Building Type\";s:4:\"type\";s:7:\"textbox\";s:3:\"key\";s:27:\"building_type_1612185844992\";s:9:\"label_pos\";s:7:\"default\";s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";b:0;s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:105:\"<p>What type of structure is this? Retail, Restaurant, Bar, Healthcare Facility, Office Building etc.</p>\";s:4:\"mask\";s:0:\"\";s:11:\"custom_mask\";s:0:\"\";s:21:\"custom_name_attribute\";s:0:\"\";s:23:\"personally_identifiable\";s:0:\"\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";s:2:\"16\";}i:12;a:2:{s:8:\"settings\";a:72:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:15;s:5:\"label\";s:13:\"Scope of Work\";s:3:\"key\";s:27:\"scope_of_work_1612185073399\";s:4:\"type\";s:8:\"textarea\";s:10:\"created_at\";s:19:\"2021-01-24 23:46:04\";s:9:\"label_pos\";s:5:\"above\";s:8:\"required\";s:1:\"1\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:15:\"container_class\";s:0:\"\";s:11:\"input_limit\";s:0:\"\";s:16:\"input_limit_type\";s:10:\"characters\";s:15:\"input_limit_msg\";s:17:\"Character(s) left\";s:10:\"manual_key\";s:0:\"\";s:13:\"disable_input\";s:0:\"\";s:11:\"admin_label\";s:0:\"\";s:9:\"help_text\";s:0:\"\";s:9:\"desc_text\";s:121:\"<p>The Meat &amp; Potato\'s! Give us the details of the project below. (Nightly Cleaning of Restrooms, Mop Lobby, etc)</p>\";s:28:\"disable_browser_autocomplete\";s:0:\"\";s:12:\"textarea_rte\";s:0:\"\";s:18:\"disable_rte_mobile\";s:0:\"\";s:14:\"textarea_media\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3284\";s:5:\"value\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:3;}i:13;a:2:{s:8:\"settings\";a:69:{s:10:\"objectType\";s:5:\"Field\";s:12:\"objectDomain\";s:6:\"fields\";s:10:\"editActive\";b:0;s:5:\"order\";i:16;s:5:\"label\";s:6:\"Submit\";s:3:\"key\";s:20:\"submit_1612186763390\";s:4:\"type\";s:6:\"submit\";s:10:\"created_at\";s:19:\"2021-01-24 23:46:05\";s:16:\"processing_label\";s:10:\"Processing\";s:15:\"container_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:28:\"wrap_styles_background-color\";s:0:\"\";s:18:\"wrap_styles_border\";s:0:\"\";s:24:\"wrap_styles_border-style\";s:0:\"\";s:24:\"wrap_styles_border-color\";s:0:\"\";s:17:\"wrap_styles_color\";s:0:\"\";s:18:\"wrap_styles_height\";s:0:\"\";s:17:\"wrap_styles_width\";s:0:\"\";s:21:\"wrap_styles_font-size\";s:0:\"\";s:18:\"wrap_styles_margin\";s:0:\"\";s:19:\"wrap_styles_padding\";s:0:\"\";s:19:\"wrap_styles_display\";s:0:\"\";s:17:\"wrap_styles_float\";s:0:\"\";s:29:\"wrap_styles_show_advanced_css\";s:1:\"0\";s:20:\"wrap_styles_advanced\";s:0:\"\";s:29:\"label_styles_background-color\";s:0:\"\";s:19:\"label_styles_border\";s:0:\"\";s:25:\"label_styles_border-style\";s:0:\"\";s:25:\"label_styles_border-color\";s:0:\"\";s:18:\"label_styles_color\";s:0:\"\";s:19:\"label_styles_height\";s:0:\"\";s:18:\"label_styles_width\";s:0:\"\";s:22:\"label_styles_font-size\";s:0:\"\";s:19:\"label_styles_margin\";s:0:\"\";s:20:\"label_styles_padding\";s:0:\"\";s:20:\"label_styles_display\";s:0:\"\";s:18:\"label_styles_float\";s:0:\"\";s:30:\"label_styles_show_advanced_css\";s:1:\"0\";s:21:\"label_styles_advanced\";s:0:\"\";s:31:\"element_styles_background-color\";s:0:\"\";s:21:\"element_styles_border\";s:0:\"\";s:27:\"element_styles_border-style\";s:0:\"\";s:27:\"element_styles_border-color\";s:0:\"\";s:20:\"element_styles_color\";s:0:\"\";s:21:\"element_styles_height\";s:0:\"\";s:20:\"element_styles_width\";s:0:\"\";s:24:\"element_styles_font-size\";s:0:\"\";s:21:\"element_styles_margin\";s:0:\"\";s:22:\"element_styles_padding\";s:0:\"\";s:22:\"element_styles_display\";s:0:\"\";s:20:\"element_styles_float\";s:0:\"\";s:32:\"element_styles_show_advanced_css\";s:1:\"0\";s:23:\"element_styles_advanced\";s:0:\"\";s:44:\"submit_element_hover_styles_background-color\";s:0:\"\";s:34:\"submit_element_hover_styles_border\";s:0:\"\";s:40:\"submit_element_hover_styles_border-style\";s:0:\"\";s:40:\"submit_element_hover_styles_border-color\";s:0:\"\";s:33:\"submit_element_hover_styles_color\";s:0:\"\";s:34:\"submit_element_hover_styles_height\";s:0:\"\";s:33:\"submit_element_hover_styles_width\";s:0:\"\";s:37:\"submit_element_hover_styles_font-size\";s:0:\"\";s:34:\"submit_element_hover_styles_margin\";s:0:\"\";s:35:\"submit_element_hover_styles_padding\";s:0:\"\";s:35:\"submit_element_hover_styles_display\";s:0:\"\";s:33:\"submit_element_hover_styles_float\";s:0:\"\";s:45:\"submit_element_hover_styles_show_advanced_css\";s:1:\"0\";s:36:\"submit_element_hover_styles_advanced\";s:0:\"\";s:7:\"cellcid\";s:5:\"c3287\";s:14:\"drawerDisabled\";b:0;}s:2:\"id\";i:4;}}s:7:\"actions\";a:4:{i:0;a:2:{s:8:\"settings\";a:30:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:4:\"save\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-01-24 17:46:06\";s:5:\"label\";s:16:\"Store Submission\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";s:11:\"success_msg\";s:42:\"Your form has been successfully submitted.\";s:15:\"submitter_email\";s:0:\"\";s:18:\"fields-save-toggle\";s:8:\"save_all\";s:16:\"exception_fields\";a:0:{}s:18:\"set_subs_to_expire\";s:1:\"0\";s:16:\"subs_expire_time\";s:2:\"90\";}s:2:\"id\";i:1;}i:1;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-01-24 17:46:06\";s:5:\"label\";s:18:\"Email Confirmation\";s:2:\"to\";s:40:\"{field:your_email_address_1612184815795}\";s:7:\"subject\";s:24:\"This is an email action.\";s:7:\"message\";s:19:\"Hello, Ninja Forms!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:0:{}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:13:\"email_subject\";s:24:\"Submission Confirmation \";s:13:\"email_message\";s:29:\"<p>{all_fields_table}<br></p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:2;}i:2;a:2:{s:8:\"settings\";a:25:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:5:\"email\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-01-24 17:46:07\";s:5:\"label\";s:18:\"Email Notification\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:24:\"sheltoncole1@comcast.net\";s:13:\"email_subject\";s:48:\"New message from {field:your_name_1612184773783}\";s:13:\"email_message\";s:109:\"<p>{all_fields_table}</p><p>-{field:your_name_1612184773783} ( {field:your_email_address_1612184815795} )</p>\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:40:\"{field:your_email_address_1612184815795}\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:10:\"attach_csv\";s:1:\"0\";s:19:\"email_message_plain\";s:0:\"\";s:14:\"drawerDisabled\";s:0:\"\";}s:2:\"id\";i:3;}i:3;a:2:{s:8:\"settings\";a:26:{s:10:\"objectType\";s:6:\"Action\";s:12:\"objectDomain\";s:7:\"actions\";s:10:\"editActive\";b:0;s:5:\"title\";s:0:\"\";s:3:\"key\";s:0:\"\";s:4:\"type\";s:14:\"successmessage\";s:6:\"active\";s:1:\"1\";s:10:\"created_at\";s:19:\"2021-01-24 17:46:07\";s:5:\"label\";s:15:\"Success Message\";s:7:\"message\";s:66:\"Thank you {field:your_name_1612184773783} for filling out my form!\";s:10:\"conditions\";a:6:{s:9:\"collapsed\";s:0:\"\";s:7:\"process\";s:1:\"1\";s:9:\"connector\";s:3:\"all\";s:4:\"when\";a:1:{i:0;a:6:{s:9:\"connector\";s:3:\"AND\";s:3:\"key\";s:0:\"\";s:10:\"comparator\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"when\";}}s:4:\"then\";a:1:{i:0;a:5:{s:3:\"key\";s:0:\"\";s:7:\"trigger\";s:0:\"\";s:5:\"value\";s:0:\"\";s:4:\"type\";s:5:\"field\";s:9:\"modelType\";s:4:\"then\";}}s:4:\"else\";a:0:{}}s:16:\"payment_gateways\";s:0:\"\";s:13:\"payment_total\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:2:\"to\";s:16:\"{wp:admin_email}\";s:13:\"email_subject\";s:22:\"Ninja Forms Submission\";s:13:\"email_message\";s:14:\"{fields_table}\";s:9:\"from_name\";s:0:\"\";s:12:\"from_address\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:12:\"email_format\";s:4:\"html\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"redirect_url\";s:0:\"\";s:11:\"success_msg\";s:116:\"<p>Form submitted successfully.</p><p>A confirmation email was sent to {field:your_email_address_1612184815795}.</p>\";s:19:\"email_message_plain\";s:0:\"\";}s:2:\"id\";i:4;}}s:8:\"settings\";a:114:{s:10:\"objectType\";s:12:\"Form Setting\";s:10:\"editActive\";b:1;s:5:\"title\";s:10:\"Contact Us\";s:3:\"key\";s:0:\"\";s:10:\"created_at\";s:19:\"2021-01-24 23:46:02\";s:17:\"default_label_pos\";s:5:\"above\";s:10:\"conditions\";a:0:{}s:10:\"show_title\";s:1:\"1\";s:14:\"clear_complete\";s:1:\"1\";s:13:\"hide_complete\";s:1:\"1\";s:13:\"wrapper_class\";s:0:\"\";s:13:\"element_class\";s:0:\"\";s:10:\"add_submit\";s:1:\"1\";s:9:\"logged_in\";s:0:\"\";s:17:\"not_logged_in_msg\";s:0:\"\";s:16:\"sub_limit_number\";s:0:\"\";s:13:\"sub_limit_msg\";s:0:\"\";s:12:\"calculations\";a:0:{}s:15:\"formContentData\";a:14:{i:0;s:23:\"your_name_1612184773783\";i:1;s:32:\"your_email_address_1612184815795\";i:2;s:26:\"phone_number_1612184870684\";i:3;s:27:\"business_name_1612184896471\";i:4;s:28:\"street_address_1612184986393\";i:5;s:35:\"street_address_line_2_1612185017020\";i:6;s:18:\"city_1612184941854\";i:7;s:19:\"state_1612184970661\";i:8;s:22:\"zip_code_1612184978127\";i:9;s:62:\"approximately_how_many_square_feet_to_be_cleaned_1612185182861\";i:10;s:35:\"frequency_of_cleaning_1612185610965\";i:11;s:27:\"building_type_1612185844992\";i:12;s:27:\"scope_of_work_1612185073399\";i:13;s:20:\"submit_1612186763390\";}s:33:\"container_styles_background-color\";s:0:\"\";s:23:\"container_styles_border\";s:0:\"\";s:29:\"container_styles_border-style\";s:0:\"\";s:29:\"container_styles_border-color\";s:0:\"\";s:22:\"container_styles_color\";s:0:\"\";s:23:\"container_styles_height\";s:0:\"\";s:22:\"container_styles_width\";s:0:\"\";s:26:\"container_styles_font-size\";s:0:\"\";s:23:\"container_styles_margin\";s:0:\"\";s:24:\"container_styles_padding\";s:0:\"\";s:24:\"container_styles_display\";s:0:\"\";s:22:\"container_styles_float\";s:0:\"\";s:34:\"container_styles_show_advanced_css\";s:1:\"0\";s:25:\"container_styles_advanced\";s:0:\"\";s:29:\"title_styles_background-color\";s:0:\"\";s:19:\"title_styles_border\";s:0:\"\";s:25:\"title_styles_border-style\";s:0:\"\";s:25:\"title_styles_border-color\";s:0:\"\";s:18:\"title_styles_color\";s:0:\"\";s:19:\"title_styles_height\";s:0:\"\";s:18:\"title_styles_width\";s:0:\"\";s:22:\"title_styles_font-size\";s:0:\"\";s:19:\"title_styles_margin\";s:0:\"\";s:20:\"title_styles_padding\";s:0:\"\";s:20:\"title_styles_display\";s:0:\"\";s:18:\"title_styles_float\";s:0:\"\";s:30:\"title_styles_show_advanced_css\";s:1:\"0\";s:21:\"title_styles_advanced\";s:0:\"\";s:27:\"row_styles_background-color\";s:0:\"\";s:17:\"row_styles_border\";s:0:\"\";s:23:\"row_styles_border-style\";s:0:\"\";s:23:\"row_styles_border-color\";s:0:\"\";s:16:\"row_styles_color\";s:0:\"\";s:17:\"row_styles_height\";s:0:\"\";s:16:\"row_styles_width\";s:0:\"\";s:20:\"row_styles_font-size\";s:0:\"\";s:17:\"row_styles_margin\";s:0:\"\";s:18:\"row_styles_padding\";s:0:\"\";s:18:\"row_styles_display\";s:0:\"\";s:28:\"row_styles_show_advanced_css\";s:1:\"0\";s:19:\"row_styles_advanced\";s:0:\"\";s:31:\"row-odd_styles_background-color\";s:0:\"\";s:21:\"row-odd_styles_border\";s:0:\"\";s:27:\"row-odd_styles_border-style\";s:0:\"\";s:27:\"row-odd_styles_border-color\";s:0:\"\";s:20:\"row-odd_styles_color\";s:0:\"\";s:21:\"row-odd_styles_height\";s:0:\"\";s:20:\"row-odd_styles_width\";s:0:\"\";s:24:\"row-odd_styles_font-size\";s:0:\"\";s:21:\"row-odd_styles_margin\";s:0:\"\";s:22:\"row-odd_styles_padding\";s:0:\"\";s:22:\"row-odd_styles_display\";s:0:\"\";s:32:\"row-odd_styles_show_advanced_css\";s:1:\"0\";s:23:\"row-odd_styles_advanced\";s:0:\"\";s:35:\"success-msg_styles_background-color\";s:0:\"\";s:25:\"success-msg_styles_border\";s:0:\"\";s:31:\"success-msg_styles_border-style\";s:0:\"\";s:31:\"success-msg_styles_border-color\";s:0:\"\";s:24:\"success-msg_styles_color\";s:0:\"\";s:25:\"success-msg_styles_height\";s:0:\"\";s:24:\"success-msg_styles_width\";s:0:\"\";s:28:\"success-msg_styles_font-size\";s:0:\"\";s:25:\"success-msg_styles_margin\";s:0:\"\";s:26:\"success-msg_styles_padding\";s:0:\"\";s:26:\"success-msg_styles_display\";s:0:\"\";s:36:\"success-msg_styles_show_advanced_css\";s:1:\"0\";s:27:\"success-msg_styles_advanced\";s:0:\"\";s:33:\"error_msg_styles_background-color\";s:0:\"\";s:23:\"error_msg_styles_border\";s:0:\"\";s:29:\"error_msg_styles_border-style\";s:0:\"\";s:29:\"error_msg_styles_border-color\";s:0:\"\";s:22:\"error_msg_styles_color\";s:0:\"\";s:23:\"error_msg_styles_height\";s:0:\"\";s:22:\"error_msg_styles_width\";s:0:\"\";s:26:\"error_msg_styles_font-size\";s:0:\"\";s:23:\"error_msg_styles_margin\";s:0:\"\";s:24:\"error_msg_styles_padding\";s:0:\"\";s:24:\"error_msg_styles_display\";s:0:\"\";s:34:\"error_msg_styles_show_advanced_css\";s:1:\"0\";s:25:\"error_msg_styles_advanced\";s:0:\"\";s:17:\"allow_public_link\";i:0;s:10:\"embed_form\";s:0:\"\";s:8:\"currency\";s:0:\"\";s:18:\"unique_field_error\";s:50:\"A form with this value has already been submitted.\";s:19:\"changeEmailErrorMsg\";s:0:\"\";s:18:\"changeDateErrorMsg\";s:0:\"\";s:20:\"confirmFieldErrorMsg\";s:0:\"\";s:22:\"fieldNumberNumMinError\";s:0:\"\";s:22:\"fieldNumberNumMaxError\";s:0:\"\";s:22:\"fieldNumberIncrementBy\";s:0:\"\";s:23:\"formErrorsCorrectErrors\";s:0:\"\";s:21:\"validateRequiredField\";s:0:\"\";s:21:\"honeypotHoneypotError\";s:0:\"\";s:20:\"fieldsMarkedRequired\";s:0:\"\";s:14:\"drawerDisabled\";b:0;}s:14:\"deleted_fields\";a:2:{i:14;s:2:\"14\";i:15;s:2:\"15\";}s:15:\"deleted_actions\";a:0:{}}',4,'\0');
/*!40000 ALTER TABLE `wp_nf3_upgrades` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://edssnow.com','yes'),(2,'home','https://edssnow.com','yes'),(3,'blogname','Eco Solutions','yes'),(4,'blogdescription','Commercial and Residential Coronavirus Disinfecting Solutions','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','ekow@esselwebdesign.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:394:{s:28:\"tribe/events/kitchen-sink/?$\";s:69:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=page\";s:93:\"tribe/events/kitchen-sink/(page|grid|typographical|elements|events-bar|navigation|manager)/?$\";s:76:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=$matches[1]\";s:28:\"event-aggregator/(insert)/?$\";s:53:\"index.php?tribe-aggregator=1&tribe-action=$matches[1]\";s:25:\"(?:event)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:28:\"(?:events)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=default&paged=$matches[1]\";s:41:\"(?:events)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&paged=$matches[1]\";s:38:\"(?:events)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:51:\"(?:events)/(?:featured)/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&feed=$matches[1]\";s:23:\"(?:events)/(?:month)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:36:\"(?:events)/(?:month)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=month&featured=1\";s:37:\"(?:events)/(?:month)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:37:\"(?:events)/(?:list)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1&paged=$matches[1]\";s:22:\"(?:events)/(?:list)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:35:\"(?:events)/(?:list)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1\";s:23:\"(?:events)/(?:today)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:36:\"(?:events)/(?:today)/(?:featured)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=day&featured=1\";s:27:\"(?:events)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:40:\"(?:events)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&featured=1\";s:33:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:46:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:26:\"(?:events)/(?:featured)/?$\";s:43:\"index.php?post_type=tribe_events&featured=1\";s:13:\"(?:events)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:18:\"(?:events)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:31:\"(?:events)/(?:featured)/ical/?$\";s:50:\"index.php?post_type=tribe_events&ical=1&featured=1\";s:38:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:47:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/featured/?$\";s:89:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:60:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&featured=1\";s:69:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:82:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&featured=1\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:59:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:113:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:65:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:78:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&feed=rss2\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/ical/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&ical=1\";s:75:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:88:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&feed=$matches[2]\";s:58:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=default\";s:45:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=default\";s:44:\"(?:events)/(?:tag)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:month)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&featured=1\";s:53:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:66:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:list)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:today)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&featured=1\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:43:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:56:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:100:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:49:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:62:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/ical/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&ical=1\";s:59:\"(?:events)/(?:tag)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:72:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&feed=$matches[2]\";s:42:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/?$\";s:59:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1\";s:29:\"(?:events)/(?:tag)/([^/]+)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=default\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:29:\"^ninja-forms/([a-zA-Z0-9]+)/?\";s:36:\"index.php?nf_public_link=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:22:\"tribe-promoter-auth/?$\";s:37:\"index.php?tribe-promoter-auth-check=1\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:61:\"^\\.well-known\\/apple-developer-merchantid-domain-association$\";s:57:\"index.php?apple-developer-merchantid-domain-association=1\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:34:\"nf_sub/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"nf_sub/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"nf_sub/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"nf_sub/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"nf_sub/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"nf_sub/([^/]+)/embed/?$\";s:39:\"index.php?nf_sub=$matches[1]&embed=true\";s:27:\"nf_sub/([^/]+)/trackback/?$\";s:33:\"index.php?nf_sub=$matches[1]&tb=1\";s:35:\"nf_sub/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&paged=$matches[2]\";s:42:\"nf_sub/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?nf_sub=$matches[1]&cpage=$matches[2]\";s:32:\"nf_sub/([^/]+)/wc-api(/(.*))?/?$\";s:47:\"index.php?nf_sub=$matches[1]&wc-api=$matches[3]\";s:38:\"nf_sub/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:49:\"nf_sub/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:31:\"nf_sub/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?nf_sub=$matches[1]&page=$matches[2]\";s:23:\"nf_sub/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"nf_sub/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"nf_sub/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"nf_sub/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"nf_sub/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:44:\"index.php?tribe_venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:31:\"venue/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?tribe_venue=$matches[1]&wc-api=$matches[3]\";s:37:\"venue/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"venue/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"organizer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"organizer/([^/]+)/embed/?$\";s:48:\"index.php?tribe_organizer=$matches[1]&embed=true\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:35:\"organizer/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?tribe_organizer=$matches[1]&wc-api=$matches[3]\";s:41:\"organizer/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"organizer/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"organizer/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"organizer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:45:\"index.php?tribe_events=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:31:\"event/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?tribe_events=$matches[1]&wc-api=$matches[3]\";s:37:\"event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:30:\"events/category/(.+?)/embed/?$\";s:49:\"index.php?tribe_events_cat=$matches[1]&embed=true\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:41:\"deleted_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"deleted_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"deleted_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"deleted_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"deleted_event/([^/]+)/embed/?$\";s:46:\"index.php?deleted_event=$matches[1]&embed=true\";s:34:\"deleted_event/([^/]+)/trackback/?$\";s:40:\"index.php?deleted_event=$matches[1]&tb=1\";s:42:\"deleted_event/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&paged=$matches[2]\";s:49:\"deleted_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&cpage=$matches[2]\";s:39:\"deleted_event/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?deleted_event=$matches[1]&wc-api=$matches[3]\";s:45:\"deleted_event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"deleted_event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"deleted_event/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?deleted_event=$matches[1]&page=$matches[2]\";s:30:\"deleted_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"deleted_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"deleted_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"deleted_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"elementor-hf/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"elementor-hf/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"elementor-hf/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"elementor-hf/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"elementor-hf/([^/]+)/embed/?$\";s:45:\"index.php?elementor-hf=$matches[1]&embed=true\";s:33:\"elementor-hf/([^/]+)/trackback/?$\";s:39:\"index.php?elementor-hf=$matches[1]&tb=1\";s:41:\"elementor-hf/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&paged=$matches[2]\";s:48:\"elementor-hf/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&cpage=$matches[2]\";s:38:\"elementor-hf/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?elementor-hf=$matches[1]&wc-api=$matches[3]\";s:44:\"elementor-hf/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"elementor-hf/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"elementor-hf/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?elementor-hf=$matches[1]&page=$matches[2]\";s:29:\"elementor-hf/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"elementor-hf/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"elementor-hf/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"elementor-hf/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"bookable_person/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"bookable_person/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"bookable_person/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"bookable_person/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"bookable_person/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"bookable_person/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"bookable_person/([^/]+)/embed/?$\";s:48:\"index.php?bookable_person=$matches[1]&embed=true\";s:36:\"bookable_person/([^/]+)/trackback/?$\";s:42:\"index.php?bookable_person=$matches[1]&tb=1\";s:44:\"bookable_person/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?bookable_person=$matches[1]&paged=$matches[2]\";s:51:\"bookable_person/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?bookable_person=$matches[1]&cpage=$matches[2]\";s:41:\"bookable_person/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?bookable_person=$matches[1]&wc-api=$matches[3]\";s:47:\"bookable_person/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"bookable_person/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"bookable_person/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?bookable_person=$matches[1]&page=$matches[2]\";s:32:\"bookable_person/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"bookable_person/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"bookable_person/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"bookable_person/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"bookable_person/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"bookable_person/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=15&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:27:\"(.?.+?)/bookings(/(.*))?/?$\";s:51:\"index.php?pagename=$matches[1]&bookings=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:19:{i:0;s:47:\"appointment-hour-booking/app-booking-plugin.php\";i:1;s:37:\"booking-calendar/booking_calendar.php\";i:2;s:51:\"bookly-responsive-appointment-booking-tool/main.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:25:\"embedpress/embedpress.php\";i:6;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:7;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:8;s:9:\"hello.php\";i:9;s:27:\"ninja-forms/ninja-forms.php\";i:10;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:11;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:12;s:25:\"templately/templately.php\";i:13;s:43:\"the-events-calendar/the-events-calendar.php\";i:14;s:46:\"under-construction-page/under-construction.php\";i:15;s:33:\"woo-bookings-calendar/wbclite.php\";i:16;s:45:\"woocommerce-bookings/woocommerce-bookings.php\";i:17;s:45:\"woocommerce-payments/woocommerce-payments.php\";i:18;s:27:\"woocommerce/woocommerce.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','astra','yes'),(41,'stylesheet','astra','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','49752','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:4:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:27:\"ninja-forms/ninja-forms.php\";s:21:\"ninja_forms_uninstall\";s:46:\"under-construction-page/under-construction.php\";a:2:{i:0;s:3:\"UCP\";i:1;s:9:\"uninstall\";}s:51:\"bookly-responsive-appointment-booking-tool/main.php\";a:2:{i:0;s:17:\"Bookly\\Lib\\Plugin\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','15','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','135','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1627077632','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:201:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:24:\"manage_bookings_settings\";b:1;s:25:\"manage_bookings_timezones\";b:1;s:26:\"manage_bookings_connection\";b:1;s:20:\"edit_bookable_person\";b:1;s:20:\"read_bookable_person\";b:1;s:22:\"delete_bookable_person\";b:1;s:21:\"edit_bookable_persons\";b:1;s:28:\"edit_others_bookable_persons\";b:1;s:24:\"publish_bookable_persons\";b:1;s:29:\"read_private_bookable_persons\";b:1;s:23:\"delete_bookable_persons\";b:1;s:31:\"delete_private_bookable_persons\";b:1;s:33:\"delete_published_bookable_persons\";b:1;s:30:\"delete_others_bookable_persons\";b:1;s:29:\"edit_private_bookable_persons\";b:1;s:31:\"edit_published_bookable_persons\";b:1;s:22:\"edit_bookable_resource\";b:1;s:22:\"read_bookable_resource\";b:1;s:24:\"delete_bookable_resource\";b:1;s:23:\"edit_bookable_resources\";b:1;s:30:\"edit_others_bookable_resources\";b:1;s:26:\"publish_bookable_resources\";b:1;s:31:\"read_private_bookable_resources\";b:1;s:25:\"delete_bookable_resources\";b:1;s:33:\"delete_private_bookable_resources\";b:1;s:35:\"delete_published_bookable_resources\";b:1;s:32:\"delete_others_bookable_resources\";b:1;s:31:\"edit_private_bookable_resources\";b:1;s:33:\"edit_published_bookable_resources\";b:1;s:15:\"edit_wc_booking\";b:1;s:15:\"read_wc_booking\";b:1;s:17:\"delete_wc_booking\";b:1;s:16:\"edit_wc_bookings\";b:1;s:23:\"edit_others_wc_bookings\";b:1;s:19:\"publish_wc_bookings\";b:1;s:24:\"read_private_wc_bookings\";b:1;s:18:\"delete_wc_bookings\";b:1;s:26:\"delete_private_wc_bookings\";b:1;s:28:\"delete_published_wc_bookings\";b:1;s:25:\"delete_others_wc_bookings\";b:1;s:24:\"edit_private_wc_bookings\";b:1;s:26:\"edit_published_wc_bookings\";b:1;s:24:\"edit_global_availability\";b:1;s:24:\"read_global_availability\";b:1;s:26:\"delete_global_availability\";b:1;s:26:\"edit_global_availabilities\";b:1;s:28:\"delete_global_availabilities\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:74:{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:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:139:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:24:\"manage_bookings_settings\";b:1;s:25:\"manage_bookings_timezones\";b:1;s:26:\"manage_bookings_connection\";b:1;s:20:\"edit_bookable_person\";b:1;s:20:\"read_bookable_person\";b:1;s:22:\"delete_bookable_person\";b:1;s:21:\"edit_bookable_persons\";b:1;s:28:\"edit_others_bookable_persons\";b:1;s:24:\"publish_bookable_persons\";b:1;s:29:\"read_private_bookable_persons\";b:1;s:23:\"delete_bookable_persons\";b:1;s:31:\"delete_private_bookable_persons\";b:1;s:33:\"delete_published_bookable_persons\";b:1;s:30:\"delete_others_bookable_persons\";b:1;s:29:\"edit_private_bookable_persons\";b:1;s:31:\"edit_published_bookable_persons\";b:1;s:22:\"edit_bookable_resource\";b:1;s:22:\"read_bookable_resource\";b:1;s:24:\"delete_bookable_resource\";b:1;s:23:\"edit_bookable_resources\";b:1;s:30:\"edit_others_bookable_resources\";b:1;s:26:\"publish_bookable_resources\";b:1;s:31:\"read_private_bookable_resources\";b:1;s:25:\"delete_bookable_resources\";b:1;s:33:\"delete_private_bookable_resources\";b:1;s:35:\"delete_published_bookable_resources\";b:1;s:32:\"delete_others_bookable_resources\";b:1;s:31:\"edit_private_bookable_resources\";b:1;s:33:\"edit_published_bookable_resources\";b:1;s:15:\"edit_wc_booking\";b:1;s:15:\"read_wc_booking\";b:1;s:17:\"delete_wc_booking\";b:1;s:16:\"edit_wc_bookings\";b:1;s:23:\"edit_others_wc_bookings\";b:1;s:19:\"publish_wc_bookings\";b:1;s:24:\"read_private_wc_bookings\";b:1;s:18:\"delete_wc_bookings\";b:1;s:26:\"delete_private_wc_bookings\";b:1;s:28:\"delete_published_wc_bookings\";b:1;s:25:\"delete_others_wc_bookings\";b:1;s:24:\"edit_private_wc_bookings\";b:1;s:26:\"edit_published_wc_bookings\";b:1;s:24:\"edit_global_availability\";b:1;s:24:\"read_global_availability\";b:1;s:26:\"delete_global_availability\";b:1;s:26:\"edit_global_availabilities\";b:1;s:28:\"delete_global_availabilities\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:12:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:8:\"search-3\";}s:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:15:\"footer-widget-3\";a:0:{}s:15:\"footer-widget-4\";a:0:{}s:15:\"header-widget-1\";a:0:{}s:15:\"header-widget-2\";a:0:{}s:22:\"astra-woo-shop-sidebar\";a:0:{}s:24:\"astra-woo-single-sidebar\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:28:{i:1618375688;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:1618376434;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:1618376883;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1618378583;a:1:{s:21:\"bookly_hourly_routine\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1618379100;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1618379175;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1618379196;a:2:{s:30:\"tribe_schedule_transient_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1618380532;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1618394434;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1618396960;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1618410017;a:1:{s:20:\"put_do_weekly_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618422395;a:2:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618437634;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:1618437675;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618437676;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618443962;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618443975;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618444800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618445342;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618452406;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618454183;a:1:{s:20:\"bookly_daily_routine\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618456132;a:1:{s:24:\"woocommerce_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:1618789567;a:1:{s:22:\"nf_marketing_feed_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1618789591;a:1:{s:26:\"nf_weekly_promotion_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"nf-weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1618869634;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1619395792;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}i:1619588689;a:1:{s:13:\"nf_optin_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"nf-monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(122,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1611747445;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(147,'finished_updating_comment_type','1','yes'),(150,'can_compress_scripts','0','no'),(165,'recently_activated','a:0:{}','yes'),(168,'eael_save_settings','a:49:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:12:\"woo-checkout\";i:1;s:14:\"login-register\";i:1;s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;}','yes'),(169,'ninja_forms_oauth_client_secret','28hYnsDUpXSWkn5NxHBktynfRT9vFjXcOJjlYPPu','yes'),(170,'ninja_forms_version','3.5.3','yes'),(171,'ninja_forms_db_version','1.4','no'),(172,'ninja_forms_required_updates','a:6:{s:19:\"CacheCollateActions\";s:19:\"2021-01-24 23:46:02\";s:17:\"CacheCollateForms\";s:19:\"2021-01-24 23:46:02\";s:18:\"CacheCollateFields\";s:19:\"2021-01-24 23:46:02\";s:19:\"CacheCollateObjects\";s:19:\"2021-01-24 23:46:02\";s:19:\"CacheCollateCleanup\";s:19:\"2021-01-24 23:46:02\";s:25:\"CacheFieldReconcilliation\";s:19:\"2021-01-24 23:46:02\";}','yes'),(173,'ninja_forms_settings','a:9:{s:11:\"date_format\";s:5:\"m/d/Y\";s:8:\"currency\";s:3:\"USD\";s:18:\"recaptcha_site_key\";s:0:\"\";s:20:\"recaptcha_secret_key\";s:0:\"\";s:14:\"recaptcha_lang\";s:0:\"\";s:19:\"delete_on_uninstall\";i:0;s:21:\"disable_admin_notices\";i:0;s:16:\"builder_dev_mode\";i:0;s:18:\"opinionated_styles\";s:5:\"light\";}','yes'),(174,'ninja_forms_zuul','50','no'),(176,'elementor_version','3.1.4','yes'),(177,'elementor_install_history','a:6:{s:6:\"3.0.16\";i:1611531966;s:5:\"3.1.0\";i:1611717397;s:5:\"3.1.1\";i:1612132653;s:5:\"3.1.2\";i:1614744434;s:5:\"3.1.3\";i:1614817747;s:5:\"3.1.4\";i:1615374965;}','yes'),(179,'eael_version','4.6.2','yes'),(180,'wpdeveloper_plugins_data','a:2:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1618980278;s:6:\"review\";i:1619700719;}s:4:\"time\";i:1616902827;s:7:\"version\";s:5:\"4.5.5\";}s:10:\"embedpress\";a:3:{s:16:\"notice_will_show\";a:3:{s:6:\"opt_in\";i:1616902827;s:6:\"upsale\";i:1618112427;s:6:\"review\";i:1617507627;}s:4:\"time\";i:1616902827;s:7:\"version\";s:5:\"2.7.3\";}}','yes'),(182,'_hfe_db_version','1.5.8','yes'),(183,'wpins_essential_adons_elementor_force_tracked','1','yes'),(184,'ninja_forms_addons_feed','[{\"title\":\"Conditional Logic\",\"image\":\"assets\\/img\\/add-ons\\/conditional-logic.png\",\"content\":\"Build dynamic forms that can change as a user fills out the form. Show and hide fields. Send certain email, don\'t send others. Redirect to one of many pages. The possibilities are endless!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic\",\"plugin\":\"ninja-forms-conditionals\\/conditionals.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/conditional-logic\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Conditional+Logic+Docs\",\"version\":\"3.0.28\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"Multi Step Forms\",\"image\":\"assets\\/img\\/add-ons\\/multi-step-forms.png\",\"content\":\"Give submissions a boost on any longer form by making it a multi-page form. Drag and drop fields between pages, add breadcrumb navigation, a progress bar, and loads more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms\",\"plugin\":\"ninja-forms-multi-part\\/multi-part.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/multi-step-forms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Multi+Step+Forms+Docs\",\"version\":\"3.0.26\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"Front-End Posting\",\"image\":\"assets\\/img\\/add-ons\\/front-end-posting.png\",\"content\":\"Let users publish content just by submitting a form! Completely configurable including post type, title, even categories and tags. Set post status, author, and much more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting\",\"plugin\":\"ninja-forms-post-creation\\/ninja-forms-post-creation.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/post-creation\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Front-End+Posting+Docs\",\"version\":\"3.0.10\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"File Uploads\",\"image\":\"assets\\/img\\/add-ons\\/file-uploads.png\",\"content\":\"Upload files to WordPress, Google Drive, Dropbox, or Amazon S3. Upload documents, images, media, and more. Easily control file type and size. Add an upload field to any form!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads\",\"plugin\":\"ninja-forms-uploads\\/file-uploads.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/file-uploads\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=File+Uploads+Docs\",\"version\":\"3.3.11\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"}]},{\"title\":\"Layout and Styles\",\"image\":\"assets\\/img\\/add-ons\\/layout-styles.png\",\"content\":\"Drag and drop fields into columns and rows. Resize fields. Add backgrounds, adjust borders, and more. Design gorgeous forms without being a designer!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles\",\"plugin\":\"ninja-forms-style\\/ninja-forms-style.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/layouts-and-styles\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Layout+and+Styles+Docs\",\"version\":\"3.0.29\",\"categories\":[{\"name\":\"Look &amp; Feel\",\"slug\":\"look-feel\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"Mailchimp\",\"image\":\"assets\\/img\\/add-ons\\/mailchimp.png\",\"content\":\"Bring new life to your lists with upgraded Mailchimp signup forms for WordPress! Easy to build and customize with no code required. Link to lists and interest groups!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp\",\"plugin\":\"ninja-forms-mail-chimp\\/ninja-forms-mail-chimp.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailchimp\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Mailchimp+Docs\",\"version\":\"3.2.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Campaign Monitor\",\"image\":\"assets\\/img\\/add-ons\\/campaign-monitor.png\",\"content\":\"Make any form a custom crafted WordPress signup form for Campaign Monitor. Connect to any list, link form fields to list fields, and watch your lists grow!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor\",\"plugin\":\"ninja-forms-campaign-monitor\\/ninja-forms-campaign-monitor.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/campaign-monitor\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Campaign+Monitor+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"User Analytics\",\"image\":\"assets\\/img\\/add-ons\\/user-analytics.png\",\"content\":\"Get better data on where your form traffic is coming from with every submission. Add 12+ analytics fields including UTM values,  URL referrer, geo data, and more!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics\",\"plugin\":\"ninja-forms-user-analytics\\/ninja-forms-user-analytics.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-analytics\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Analytics+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"Constant Contact\",\"image\":\"assets\\/img\\/add-ons\\/constant-contact.png\",\"content\":\"Connect WordPress to Constant Contact with forms that you can build and design just the way you want, no tech skills required! Subscribe users to any list or interest group.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact\",\"plugin\":\"ninja-forms-constant-contact\\/ninja-forms-constant-contact.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/constant-contact\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Constant+Contact+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"AWeber\",\"image\":\"assets\\/img\\/add-ons\\/aweber.png\",\"content\":\"Build your lists faster with easy to design, professional quality WordPress signup forms. No technical skills required. Connect WordPress to AWeber with style!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber\",\"plugin\":\"ninja-forms-aweber\\/ninja-forms-aweber.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/aweber\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=AWeber+Docs\",\"version\":\"3.1.1\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"PayPal Express\",\"image\":\"assets\\/img\\/add-ons\\/paypal-express.png\",\"content\":\"Set up any form to accept PayPal payments with PayPal Express for WordPress! Base totals on a fixed amount, user entered amount, or a calculated total.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express\",\"plugin\":\"ninja-forms-paypal-express\\/ninja-forms-paypal-express.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/paypal-express\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PayPal+Express+Docs\",\"version\":\"3.0.15\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"MailPoet\",\"image\":\"assets\\/img\\/add-ons\\/mailpoet.png\",\"content\":\"Say hello better! Customize your MailPoet signup forms to draw more subscribers than ever before. Connect WordPress to any MailPoet list in minutes!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet\",\"plugin\":\"ninja-forms-mailpoet\\/nf-mailpoet.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/mailpoet\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=MailPoet+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Zoho CRM\",\"image\":\"assets\\/img\\/add-ons\\/zoho-crm.png\",\"content\":\"Customize your forms to get the most out of your connection between WordPress and Zoho. Link form fields directly to Zoho fields, custom fields included, from almost any module.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/ninja-forms-zoho-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zoho-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zoho+CRM+Docs\",\"version\":\"3.4\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Capsule CRM\",\"image\":\"assets\\/img\\/add-ons\\/capsule-crm.png\",\"content\":\"Boost conversions from WordPress to Capsule with forms tailor made to your audience. Link form fields to Capsule fields from a wide range of modules. Custom fields too!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM\",\"plugin\":\"ninja-forms-capsule-crm\\/ninja-forms-capsule-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/capsule-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Capsule+CRM+Docs\",\"version\":\"3.4.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Stripe\",\"image\":\"assets\\/img\\/add-ons\\/stripe.png\",\"content\":\"Set up any WordPress form to accept credit card payments or donations through Stripe. Base totals on a fixed amount, user entered amount, or a calculated total!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe\",\"plugin\":\"ninja-forms-stripe\\/ninja-forms-stripe.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/stripe\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Stripe+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Insightly CRM\",\"image\":\"assets\\/img\\/add-ons\\/insightly-crm.png\",\"content\":\"Your customer\'s journey begins with your WordPress forms. Send Contacts, Leads, Opportunities, Custom fields and more seamlessly from WordPress to Insightly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM\",\"plugin\":\"ninja-forms-insightly-crm\\/ninja-forms-insightly-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/insightly-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Insightly+CRM+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"PDF Form Submission\",\"image\":\"assets\\/img\\/add-ons\\/pdf-form-submission.png\",\"content\":\"Generate a PDF of any WordPress form submission. Export any submission as a PDF, or attach it to an email and send a copy to whoever needs one!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission\",\"plugin\":\"ninja-forms-pdf-submissions\\/nf-pdf-submissions.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pdf\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PDF+Form+Submission+Docs\",\"version\":\"3.1.4\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"}]},{\"title\":\"Trello\",\"image\":\"assets\\/img\\/add-ons\\/trello.png\",\"content\":\"Create a new Trello card with data from any WordPress form submission. Map fields to card details, assign members and labels, upload images, embed links.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello\",\"plugin\":\"ninja-forms-trello\\/ninja-forms-trello.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/trello\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Trello+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"Elavon\",\"image\":\"assets\\/img\\/add-ons\\/elavon.png\",\"content\":\"Accept credit card payments from any of your WordPress forms. Pass customer and invoice info from any field securely into Elavon with each payment.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon\",\"plugin\":\"ninja-forms-elavon-payment-gateway\\/ninja-forms-elavon-payment-gateway.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/elavon\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Elavon+Docs\",\"version\":\"3.1.0\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Zapier\",\"image\":\"assets\\/img\\/add-ons\\/zapier.png\",\"content\":\"Don\'t see an add-on integration for a service you love? Don\'t worry! Connect WordPress to more than 1,500 different services through Zapier, no code required!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier\",\"plugin\":\"ninja-forms-zapier\\/ninja-forms-zapier.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/zapier\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Zapier+Docs\",\"version\":\"3.0.8\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"}]},{\"title\":\"Salesforce CRM\",\"image\":\"assets\\/img\\/add-ons\\/salesforce-crm.png\",\"content\":\"Easily map any form field to any Salesforce Object or Field. A better connection to your customers begins with a better WordPress form builder!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM\",\"plugin\":\"ninja-forms-salesforce-crm\\/ninja-forms-salesforce-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/salesforce-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Salesforce+CRM+Docs\",\"version\":\"3.2.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Slack\",\"image\":\"assets\\/img\\/add-ons\\/slack.png\",\"content\":\"Get realtime Slack notifications in the workspace and channel of your choice with any new WordPress form submission. @Mention any team member!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack\",\"plugin\":\"ninja-forms-slack\\/ninja-forms-slack.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/slack\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Slack+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"CleverReach\",\"image\":\"assets\\/img\\/add-ons\\/cleverreach.png\",\"content\":\"Grow the reach of your email marketing with better CleverReach signup forms. Tailor your forms to your audience with this easy to set up integration!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach\",\"plugin\":\"ninja-forms-cleverreach\\/ninja-forms-cleverreach.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/cleverreach\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=CleverReach+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Webhooks\",\"image\":\"assets\\/img\\/add-ons\\/webhooks.png\",\"content\":\"Can\'t find a WordPress integration for the service you love? Send WordPress forms data to any external URL using a simple GET or POST request!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks\",\"plugin\":\"ninja-forms-webhooks\\/ninja-forms-webhooks.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webhooks\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Webhooks+Docs\",\"version\":\"3.0.5\",\"categories\":[{\"name\":\"Notifications\",\"slug\":\"notifications\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Custom Integrations\",\"slug\":\"custom-integrations\"}]},{\"title\":\"Excel Export\",\"image\":\"assets\\/img\\/add-ons\\/excel-export.png\",\"content\":\"Export any form\'s submissions as a Microsoft Excel spreadsheet. Choose a date range, the fields you want to include, and export to Excel! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export\",\"plugin\":\"ninja-forms-excel-export\\/ninja-forms-excel-export.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/excel-export\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Excel+Export+Docs\",\"version\":\"3.3.2\",\"categories\":[{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"}]},{\"title\":\"Formstack Documents\",\"image\":\"assets\\/img\\/add-ons\\/webmerge.png\",\"content\":\"Create specifically formatted templates from an uploaded PDF or Word document, then auto-fill them from any WordPress form submission!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents\",\"plugin\":\"ninja-forms-webmerge\\/ninja-forms-webmerge.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/webmerge\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Formstack+Documents+Docs\",\"version\":\"3.0.3\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"File Management\",\"slug\":\"file-management\"}]},{\"title\":\"Help Scout\",\"image\":\"assets\\/img\\/add-ons\\/help-scout.png\",\"content\":\"Offering great support is hard. Tailor your WordPress forms to match your customers\' needs with this Help Scout integration for WordPress.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout\",\"plugin\":null,\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/help-scout\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Help+Scout+Docs\",\"version\":\"3.1.3\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"Emma\",\"image\":\"assets\\/img\\/add-ons\\/emma.png\",\"content\":\"Take your email marketing further with handcrafted, easy to build signup forms that connect directly into your Emma account! \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma\",\"plugin\":\"ninja-forms-emma\\/ninja-forms-emma.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emma\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Emma+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Developer\",\"slug\":\"developer\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"User\",\"slug\":\"user\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"ClickSend SMS\",\"image\":\"assets\\/img\\/add-ons\\/clicksend-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS\",\"plugin\":\"ninja-forms-clicksend\\/ninja-forms-clicksend.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/clicksend-sms\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ClickSend+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"Twilio SMS\",\"image\":\"assets\\/img\\/add-ons\\/twilio-sms.png\",\"content\":\"Get instant SMS notifications with every new WordPress form submission. Respond to leads faster and make more personal connections!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS\",\"plugin\":\"ninja-forms-twilio\\/ninja-forms-twilio.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/twilio\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Twilio+SMS+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Notification and Workflow\",\"slug\":\"notification-workflow\"}]},{\"title\":\"Recurly\",\"image\":\"assets\\/img\\/add-ons\\/recurly.png\",\"content\":\"Subscription plans a part of your business model? Let your users subscribe from any WordPress form & make management easier with Recurly!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly\",\"plugin\":\"ninja-forms-recurly\\/ninja-forms-recurly.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/recurly\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Recurly+Docs\",\"version\":\"3.0.4\",\"categories\":[{\"name\":\"Payment Gateways\",\"slug\":\"payment-gateways\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"User Management\",\"image\":\"assets\\/img\\/add-ons\\/user-management.png\",\"content\":\"Allow your users to register, login, and manage their own profiles on your website. Customizable template forms for each, or design your own!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management\",\"plugin\":\"ninja-forms-user-management\\/ninja-forms-user-management.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/user-management\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=User+Management+Docs\",\"version\":\"3.0.12\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"User Management\",\"slug\":\"user-management\"}]},{\"title\":\"Save Progress\",\"image\":\"assets\\/img\\/add-ons\\/save-progress.png\",\"content\":\"Let your users save their work and reload it all when they have time to return. Don\'t lose out on valuable submissions for longer forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress\",\"plugin\":\"ninja-forms-save-progress\\/ninja-forms-save-progress.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/save-progress\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Save+Progress+Docs\",\"version\":\"3.0.25\",\"categories\":[{\"name\":\"Content Management\",\"slug\":\"content-management\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"},{\"name\":\"Form Function and Design\",\"slug\":\"form-function-design\"}]},{\"title\":\"EmailOctopus\",\"image\":\"assets\\/img\\/add-ons\\/emailoctopus.png\",\"content\":\"Pair WordPress\' best drag and drop form builder with your EmailOctopus account for incredibly effective signup forms. Easy, complete integration.\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus\",\"plugin\":\"ninja-forms-emailoctopus\\/ninja-forms-emailoctopus.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/emailoctopus\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=EmailOctopus+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Business\",\"slug\":\"business\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"PipelineDeals CRM\",\"image\":\"assets\\/img\\/add-ons\\/pipelinedeals-crm.png\",\"content\":\"Complete, effortless integration with PipelineDeals CRM. Increase the flow of leads into your sales pipeline with upgraded lead generation forms!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PipelineDeals+CRM\",\"plugin\":\"ninja-forms-zoho-crm\\/zoho-integration.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/pipelinedeals-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=PipelineDeals+CRM+Docs\",\"version\":\"3.0.1\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"Highrise CRM\",\"image\":\"assets\\/img\\/add-ons\\/highrise-crm.png\",\"content\":\"Get more out of the functional simplicity of Highrise CRM with forms that can be designed from the ground up to maximize conversion. \",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/highrise-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Highrise+CRM\",\"plugin\":\"ninja-forms-highrise-crm\\/ninja-forms-highrise-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/highrise-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=Highrise+CRM+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"ConvertKit\",\"image\":\"assets\\/img\\/add-ons\\/convertkit.png\",\"content\":\"Connect WordPress to your ConvertKit account with completely customizable opt-in forms. Watch your audience & sales grow like never before!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit\",\"plugin\":\"ninja-forms-convertkit\\/ninja-forms-convertkit.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/convertkit\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ConvertKit+Docs\",\"version\":\"3.0.2\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Personal\",\"slug\":\"personal\"},{\"name\":\"Professional\",\"slug\":\"professional\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"OnePageCRM\",\"image\":\"assets\\/img\\/add-ons\\/onepage-crm.png\",\"content\":\"Integrate WordPress with OnePage CRM seamlessly through highly customizable WordPress forms. Make better conversions <em>your<\\/em> Next Action!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM\",\"plugin\":\"ninja-forms-onepage-crm\\/ninja-forms-onepage-crm.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/onepage-crm\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=OnePageCRM+Docs\",\"version\":\"3.0.0\",\"categories\":[{\"name\":\"CRM Integrations\",\"slug\":\"crm-integrations\"},{\"name\":\"Actions\",\"slug\":\"actions\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]},{\"title\":\"ActiveCampaign\",\"image\":\"assets\\/img\\/add-ons\\/active-campaign.png\",\"content\":\"Design custom forms that link perfectly to your ActiveCampaign account for the ultimate in marketing automation. Better leads begin here!\",\"link\":\"https:\\/\\/ninjaforms.com\\/extensions\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign\",\"plugin\":\"ninja-forms-active-campaign\\/ninja-forms-active-campaign.php\",\"docs\":\"https:\\/\\/ninjaforms.com\\/docs\\/activecampaign\\/?utm_medium=plugin&utm_source=plugin-addons-page&utm_campaign=Ninja+Forms+Addons+Page&utm_content=ActiveCampaign+Docs\",\"version\":\"3.0.6\",\"categories\":[{\"name\":\"Email Marketing\",\"slug\":\"email-marketing\"},{\"name\":\"Membership\",\"slug\":\"membership\"},{\"name\":\"Agency\",\"slug\":\"agency\"}]}]','no'),(187,'ucp_pointers','a:0:{}','yes'),(188,'action_scheduler_hybrid_store_demarkation','5','yes'),(189,'schema-ActionScheduler_StoreSchema','3.0.1611531968','yes'),(190,'schema-ActionScheduler_LoggerSchema','2.0.1611531968','yes'),(193,'woocommerce_schema_version','430','yes'),(194,'woocommerce_store_address','','yes'),(195,'woocommerce_store_address_2','','yes'),(196,'woocommerce_store_city','','yes'),(197,'woocommerce_default_country','US:AR','yes'),(198,'woocommerce_store_postcode','','yes'),(199,'woocommerce_allowed_countries','specific','yes'),(200,'woocommerce_all_except_countries','a:0:{}','yes'),(201,'woocommerce_specific_allowed_countries','a:1:{i:0;s:2:\"US\";}','yes'),(202,'woocommerce_ship_to_countries','','yes'),(203,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(204,'woocommerce_default_customer_address','base','yes'),(205,'woocommerce_calc_taxes','no','yes'),(206,'woocommerce_enable_coupons','yes','yes'),(207,'woocommerce_calc_discounts_sequentially','no','no'),(208,'woocommerce_currency','USD','yes'),(209,'woocommerce_currency_pos','left','yes'),(210,'woocommerce_price_thousand_sep',',','yes'),(211,'woocommerce_price_decimal_sep','.','yes'),(212,'woocommerce_price_num_decimals','2','yes'),(213,'woocommerce_shop_page_id','6','yes'),(214,'woocommerce_cart_redirect_after_add','no','yes'),(215,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(216,'woocommerce_placeholder_image','5','yes'),(217,'woocommerce_weight_unit','kg','yes'),(218,'woocommerce_dimension_unit','cm','yes'),(219,'woocommerce_enable_reviews','yes','yes'),(220,'woocommerce_review_rating_verification_label','yes','no'),(221,'woocommerce_review_rating_verification_required','no','no'),(222,'woocommerce_enable_review_rating','yes','yes'),(223,'woocommerce_review_rating_required','yes','no'),(224,'woocommerce_manage_stock','yes','yes'),(225,'woocommerce_hold_stock_minutes','60','no'),(226,'woocommerce_notify_low_stock','yes','no'),(227,'woocommerce_notify_no_stock','yes','no'),(228,'woocommerce_stock_email_recipient','ekow@esselwebdesign.com','no'),(229,'woocommerce_notify_low_stock_amount','2','no'),(230,'woocommerce_notify_no_stock_amount','0','yes'),(231,'woocommerce_hide_out_of_stock_items','no','yes'),(232,'woocommerce_stock_format','','yes'),(233,'woocommerce_file_download_method','force','no'),(234,'woocommerce_downloads_require_login','no','no'),(235,'woocommerce_downloads_grant_access_after_payment','yes','no'),(236,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(237,'woocommerce_prices_include_tax','no','yes'),(238,'woocommerce_tax_based_on','shipping','yes'),(239,'woocommerce_shipping_tax_class','inherit','yes'),(240,'woocommerce_tax_round_at_subtotal','no','yes'),(241,'woocommerce_tax_classes','','yes'),(242,'woocommerce_tax_display_shop','excl','yes'),(243,'woocommerce_tax_display_cart','excl','yes'),(244,'woocommerce_price_display_suffix','','yes'),(245,'woocommerce_tax_total_display','itemized','no'),(246,'woocommerce_enable_shipping_calc','yes','no'),(247,'woocommerce_shipping_cost_requires_address','no','yes'),(248,'woocommerce_ship_to_destination','billing','no'),(249,'woocommerce_shipping_debug_mode','no','yes'),(250,'woocommerce_enable_guest_checkout','yes','no'),(251,'woocommerce_enable_checkout_login_reminder','no','no'),(252,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(253,'woocommerce_enable_myaccount_registration','no','no'),(254,'woocommerce_registration_generate_username','yes','no'),(255,'woocommerce_registration_generate_password','yes','no'),(256,'woocommerce_erasure_request_removes_order_data','no','no'),(257,'woocommerce_erasure_request_removes_download_data','no','no'),(258,'woocommerce_allow_bulk_remove_personal_data','no','no'),(259,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(260,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(261,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(262,'woocommerce_trash_pending_orders','','no'),(263,'woocommerce_trash_failed_orders','','no'),(264,'woocommerce_trash_cancelled_orders','','no'),(265,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(266,'woocommerce_email_from_name','Eco Solutions','no'),(267,'woocommerce_email_from_address','sheltoncole1@comcast.net','no'),(268,'woocommerce_email_header_image','','no'),(269,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(270,'woocommerce_email_base_color','#051355','no'),(271,'woocommerce_email_background_color','#f7f7f7','no'),(272,'woocommerce_email_body_background_color','#ffffff','no'),(273,'woocommerce_email_text_color','#3c3c3c','no'),(274,'woocommerce_cart_page_id','7','no'),(275,'woocommerce_checkout_page_id','8','no'),(276,'woocommerce_myaccount_page_id','9','no'),(277,'woocommerce_terms_page_id','','no'),(278,'woocommerce_force_ssl_checkout','no','yes'),(279,'woocommerce_unforce_ssl_checkout','no','yes'),(280,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(281,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(282,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(283,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(284,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(285,'woocommerce_myaccount_orders_endpoint','orders','yes'),(286,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(287,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(288,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(289,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(290,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(291,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(292,'woocommerce_logout_endpoint','customer-logout','yes'),(293,'woocommerce_api_enabled','no','yes'),(294,'woocommerce_allow_tracking','yes','no'),(295,'woocommerce_show_marketplace_suggestions','yes','no'),(296,'woocommerce_single_image_width','600','yes'),(297,'woocommerce_thumbnail_image_width','300','yes'),(298,'woocommerce_checkout_highlight_required_fields','yes','yes'),(299,'woocommerce_demo_store','no','no'),(300,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(301,'current_theme_supports_woocommerce','yes','yes'),(302,'woocommerce_queue_flush_rewrite_rules','no','yes'),(305,'default_product_cat','15','yes'),(308,'woocommerce_version','4.9.2','yes'),(309,'woocommerce_db_version','4.9.2','yes'),(312,'_transient_jetpack_autoloader_plugin_paths','a:2:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";i:1;s:38:\"{{WP_PLUGIN_DIR}}/woocommerce-payments\";}','yes'),(313,'action_scheduler_lock_async-request-runner','1618374257','yes'),(314,'woocommerce_admin_notices','a:1:{i:0;s:20:\"no_secure_connection\";}','yes'),(315,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"ZRXoaG0JN0IHkXLkbE1IfwegePHmo6RK\";}','yes'),(316,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(317,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(318,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(319,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(320,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(321,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(323,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(324,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(325,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(326,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(327,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(328,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(329,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(332,'woocommerce_admin_version','1.8.3','yes'),(333,'woocommerce_admin_install_timestamp','1611531975','yes'),(335,'ninja-forms-views-secret','EEkC0sNJTnsH4VqpJSX9cs1whfa0EFSFWURjyPMW','yes'),(336,'ucp_meta','a:3:{s:13:\"first_version\";s:4:\"3.86\";s:13:\"first_install\";i:1611531977;s:11:\"options_ver\";s:4:\"3.88\";}','yes'),(339,'wc_admin_note_home_screen_feedback_homescreen_accessed','1611531977','yes'),(343,'ninja_forms_needs_updates','0','yes'),(344,'wc_blocks_db_schema_version','260','yes'),(345,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:1;s:22:\"there_are_now_products\";b:1;}','yes'),(347,'woocommerce_meta_box_errors','a:0:{}','yes'),(348,'nf_admin_notice','a:1:{s:16:\"one_week_support\";a:3:{s:5:\"start\";s:9:\"1/31/2021\";s:3:\"int\";i:7;s:9:\"dismissed\";i:1;}}','yes'),(349,'bsf_analytics_installed_time','1611531978','no'),(350,'_elementor_installed_time','1611531978','yes'),(351,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:13:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:5:\"Ebook\";i:3;s:9:\"eCommerce\";i:4;s:9:\"Education\";i:5;s:6:\"Events\";i:6;s:18:\"Health and Fitness\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:868:{i:0;a:15:{s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:15:{s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:15:{s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:196;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:15:{s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:15:{s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:15:{s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:15:{s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:512;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:15:{s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:15:{s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:690;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:15:{s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:15:{s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:390;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:15:{s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:15:{s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:15:{s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:15:{s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:15:{s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:15:{s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:15:{s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:15:{s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:480;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:15:{s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:15:{s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:15:{s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:15:{s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:15:{s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:15:{s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:15:{s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:15:{s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:15:{s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:406;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:15:{s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:15:{s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:704;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:15:{s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:15:{s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:698;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:15:{s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:15:{s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:15:{s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:15:{s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:15:{s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:15:{s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:15:{s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:15:{s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:363;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:15:{s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:15:{s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:15:{s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:422;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:15:{s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:15:{s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:15:{s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:15:{s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:15:{s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:15:{s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:15:{s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:15:{s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:15:{s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:762;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:15:{s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:680;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:15:{s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Health &#038; Fitness &#8211; Aesthetic Clinic\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/health-fitness-aesthetic-clinic/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:15:{s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:834;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:15:{s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:15:{s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:647;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:15:{s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:15:{s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:15:{s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:15:{s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:15:{s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:15:{s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:15:{s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:15:{s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:620;s:11:\"trend_index\";i:462;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:15:{s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:15:{s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:15:{s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:15:{s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:15:{s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:15:{s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:71;a:15:{s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:798;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:15:{s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:15:{s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:15:{s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:15:{s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:15:{s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:15:{s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:15:{s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:15:{s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:15:{s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:794;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:15:{s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:15:{s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:696;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:15:{s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:622;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:15:{s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:15:{s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:770;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:15:{s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:15:{s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:15:{s:2:\"id\";i:1190;s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1490707391;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:2;s:11:\"trend_index\";i:1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:89;a:15:{s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:835;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:15:{s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:91;a:15:{s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:15:{s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:15:{s:2:\"id\";i:225;s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";i:1470829872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:1;s:11:\"trend_index\";i:2;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:94;a:15:{s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:95;a:15:{s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:15:{s:2:\"id\";i:463;s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";i:1477388340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:3;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:97;a:15:{s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:15:{s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:15:{s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:15:{s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:257;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:15:{s:2:\"id\";i:181;s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";i:1470826567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:3;s:11:\"trend_index\";i:4;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:102;a:15:{s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:15:{s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:15:{s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:15:{s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:15:{s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:516;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:15:{s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:15:{s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:15:{s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:15:{s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:791;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:15:{s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:15:{s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:15:{s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:15:{s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:305;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:15:{s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:61;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:15:{s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:802;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:15:{s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:276;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:15:{s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:15:{s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:15:{s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:121;a:15:{s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:547;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:15:{s:2:\"id\";i:150;s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";i:1470829879;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:5;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:123;a:15:{s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:124;a:15:{s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:15:{s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:19;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:15:{s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:306;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:15:{s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:128;a:15:{s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:15:{s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:15:{s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:65;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:131;a:15:{s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:242;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:15:{s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:815;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:15:{s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:15:{s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:15:{s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:15:{s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:137;a:15:{s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:138;a:15:{s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:15:{s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:804;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:15:{s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:141;a:15:{s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:15:{s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:746;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:15:{s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:748;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:15:{s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:435;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:15:{s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:789;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:15:{s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:147;a:15:{s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:15:{s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:785;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:149;a:15:{s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:150;a:15:{s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:15:{s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:15:{s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:15:{s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:789;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:154;a:15:{s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:155;a:15:{s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:15:{s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:623;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:15:{s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:444;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:158;a:15:{s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:15:{s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:15:{s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:161;a:15:{s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:549;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:15:{s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:89;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:15:{s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:15:{s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:15:{s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:15:{s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:688;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:15:{s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:850;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:15:{s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:15:{s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:15:{s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:15:{s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:15:{s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:15:{s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:818;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:15:{s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:175;a:15:{s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:15:{s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:177;a:15:{s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:833;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:15:{s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:15:{s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:15:{s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:15:{s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:15:{s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:827;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:15:{s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:15:{s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:807;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:15:{s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:15:{s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:15:{s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:15:{s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:842;s:11:\"trend_index\";i:790;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:15:{s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:15:{s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:15:{s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:192;a:15:{s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:404;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:15:{s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:837;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:15:{s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:15:{s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:15:{s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:15:{s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:862;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:15:{s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:15:{s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:15:{s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:864;s:11:\"trend_index\";i:830;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:15:{s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:15:{s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:174;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:15:{s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:867;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:15:{s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:15:{s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:15:{s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:637;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:15:{s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:865;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:15:{s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:15:{s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:15:{s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:15:{s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:212;a:15:{s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:15:{s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:15:{s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:651;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:15:{s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:15:{s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:15:{s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:15:{s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:851;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:15:{s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:15:{s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:461;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:15:{s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:15:{s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:219;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:15:{s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:15:{s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:225;a:15:{s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:15:{s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:15:{s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:855;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:15:{s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:15:{s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:15:{s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:15:{s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:15:{s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:749;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:15:{s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:15:{s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:863;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:15:{s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:15:{s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:15:{s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:798;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:15:{s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:15:{s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:15:{s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:15:{s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:242;a:15:{s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:15:{s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:15:{s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:15:{s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:246;a:15:{s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:15:{s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:15:{s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:595;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:249;a:15:{s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:464;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:15:{s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:251;a:15:{s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:15:{s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:15:{s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:15:{s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:15:{s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:15:{s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:15:{s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:15:{s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:15:{s:2:\"id\";i:16192;s:5:\"title\";s:30:\"Management App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1607866881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/management-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:33:\"[\"App\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:824;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:15:{s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:15:{s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:446;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:262;a:15:{s:2:\"id\";i:15839;s:5:\"title\";s:29:\"Chiropractor &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1607855449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/chiropractor-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Business\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:825;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:15:{s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:15:{s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:15:{s:2:\"id\";i:15827;s:5:\"title\";s:32:\"Creative Agency &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1607855280;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/creative-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:168:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"Marketing Campaign\",\"Marketing Landing Page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:15:{s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:317;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:15:{s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:15:{s:2:\"id\";i:16120;s:5:\"title\";s:37:\"Life coach Tom &#8211; Online Service\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1607865812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/life-coach-tom-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:30:\"[\"Consulting\",\"Landing Pages\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:822;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:15:{s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:160;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:15:{s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:15:{s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:15:{s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:674;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:15:{s:2:\"id\";i:16059;s:5:\"title\";s:34:\"Melbourne Conference &#8211; Event\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1607864236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/melbourne-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:839;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:15:{s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:15:{s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:15:{s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:15:{s:2:\"id\";i:16073;s:5:\"title\";s:56:\"International Women&#8217;s Day Conference &#8211; Event\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1607864979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/international-womens-day-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:15:{s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:499;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:15:{s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:15:{s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:708;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:15:{s:2:\"id\";i:16085;s:5:\"title\";s:29:\"Tech Conference &#8211; Event\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1607865227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/tech-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:846;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:15:{s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:15:{s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:15:{s:2:\"id\";i:16102;s:5:\"title\";s:38:\"Environmental Conference &#8211; Event\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1607865473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/environmental-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:829;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:15:{s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:15:{s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:15:{s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:15:{s:2:\"id\";i:15931;s:5:\"title\";s:37:\"Tokyo Design Conference &#8211; Event\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1607861271;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/tokyo-design-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:813;s:11:\"trend_index\";i:748;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:15:{s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:15:{s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:15:{s:2:\"id\";i:16412;s:5:\"title\";s:36:\"Photography Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1607869919;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/photography-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:52:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:860;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:15:{s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:15:{s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:15:{s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:295;a:15:{s:2:\"id\";i:16183;s:5:\"title\";s:32:\"Luxury Homes &#8211; Real Estate\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1607866726;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:835;s:11:\"trend_index\";i:774;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:296;a:15:{s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:15:{s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:298;a:15:{s:2:\"id\";i:16420;s:5:\"title\";s:36:\"Spring Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1607899243;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/spring-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Coupon\",\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:786;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:15:{s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:15:{s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:15:{s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:771;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:15:{s:2:\"id\";i:16427;s:5:\"title\";s:34:\"Dream Car Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1607934325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/dream-car-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:53:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Offer\",\"Sale\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:15:{s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:15:{s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:305;a:15:{s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:15:{s:2:\"id\";i:16433;s:5:\"title\";s:42:\"Leshnik Mega Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1607934474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/leshnik-mega-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:45:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:15:{s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:15:{s:2:\"id\";i:12805;s:5:\"title\";s:38:\"Photography &#8211; B&#038;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:15:{s:2:\"id\";i:15986;s:5:\"title\";s:40:\"From Freelance to Business &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1607862915;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/from-freelance-to-business-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:143:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"Landing Pages\",\"Marketing\",\"Product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:15:{s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:311;a:15:{s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:682;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:15:{s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:15:{s:2:\"id\";i:16002;s:5:\"title\";s:30:\"Architect Manual &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1607863075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/architect-manual-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:833;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:15:{s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:15:{s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:15:{s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:15:{s:2:\"id\";i:16014;s:5:\"title\";s:23:\"Good Life &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1607863305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/lp/good-life-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:15:{s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:15:{s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:15:{s:2:\"id\";i:16242;s:5:\"title\";s:37:\"Fashion Season Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1607867761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/fashion-season-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:772;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:15:{s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:15:{s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:15:{s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:15:{s:2:\"id\";i:16202;s:5:\"title\";s:39:\"Starlight Nation Festival &#8211; Event\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1607867113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/starlight-nation-festival-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:15:{s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:524;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:15:{s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:15:{s:2:\"id\";i:16139;s:5:\"title\";s:37:\"Financial Consultant &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1607866334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/financial-consultant-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:40:\"[\"Consulting\",\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:765;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:15:{s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:15:{s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:15:{s:2:\"id\";i:15822;s:5:\"title\";s:30:\"Family Vacation &#8211; Travel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1607855143;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/family-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:331;a:15:{s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:773;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:15:{s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:15:{s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:15:{s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:15:{s:2:\"id\";i:15964;s:5:\"title\";s:31:\"Law Convention &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607862731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/law-convention-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:36:\"[\"Convention\",\"Landing Pages\",\"Law\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:852;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:15:{s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:15:{s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:15:{s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:15:{s:2:\"id\";i:15910;s:5:\"title\";s:38:\"Litigation Law Office &#8211; Business\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1607860827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/litigation-law-office-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:32:\"[\"Landing Pages\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:15:{s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:15:{s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:342;a:15:{s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:15:{s:2:\"id\";i:16025;s:5:\"title\";s:33:\"Conoco Mobile App &#8211; Product\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1607863511;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/conoco-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:15:{s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:15:{s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:15:{s:2:\"id\";i:15853;s:5:\"title\";s:29:\"Me Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1607857451;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/me-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:811;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:15:{s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:15:{s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:349;a:15:{s:2:\"id\";i:15844;s:5:\"title\";s:32:\"Torel Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1607856863;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/torel-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:15:{s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:472;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:15:{s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:15:{s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:15:{s:2:\"id\";i:16041;s:5:\"title\";s:31:\"Nano Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1607863992;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:15:{s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:15:{s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:15:{s:2:\"id\";i:15890;s:5:\"title\";s:39:\"Personal Trainer &#8211; Online Service\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1607860512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-trainer-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:35:\"[\"Fitness\",\"Landing Pages\",\"Sport\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:836;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:15:{s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:15:{s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:359;a:15:{s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:15:{s:2:\"id\";i:16233;s:5:\"title\";s:36:\"Journey Photography &#8211; Business\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1607867416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/journey-photography-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:42:\"[\"Business\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:788;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:15:{s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:15:{s:2:\"id\";i:9139;s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1532949924;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:15:{s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:15:{s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:15:{s:2:\"id\";i:16162;s:5:\"title\";s:29:\"Private Chef &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1607866578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/private-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:24:\"[\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:853;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:15:{s:2:\"id\";i:1634;s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1494352119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:370;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:15:{s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:15:{s:2:\"id\";i:16325;s:5:\"title\";s:28:\"Quality Lens &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1607868782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/quality-lens-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:743;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:15:{s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:15:{s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:15:{s:2:\"id\";i:16332;s:5:\"title\";s:31:\"Luxury Flat &#8211; Real Estate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1607868929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/luxury-flat-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:38:\"[\"flat\",\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:809;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:372;a:15:{s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:15:{s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:15:{s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1607869068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:709;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:15:{s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:15:{s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:247;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:377;a:15:{s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:15:{s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:15:{s:2:\"id\";i:16358;s:5:\"title\";s:41:\"Sunset Valley Project &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1607869234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/sunset-valley-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:841;s:11:\"trend_index\";i:719;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:15:{s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:15:{s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:382;a:15:{s:2:\"id\";i:1504;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1494352112;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:15:{s:2:\"id\";i:16379;s:5:\"title\";s:33:\"Property Page &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1607869379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/property-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:42:\"[\"Landing Pages\",\"Property\",\"Real estate\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:15:{s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:15:{s:2:\"id\";i:16392;s:5:\"title\";s:30:\"Open House &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1607869551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:150:\"[\"Agent\",\"Business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"Landing Pages\",\"listing\",\"modern\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:838;s:11:\"trend_index\";i:796;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:15:{s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:16;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:387;a:15:{s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:15:{s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:389;a:15:{s:2:\"id\";i:15950;s:5:\"title\";s:30:\"Stylist &#8211; Online Service\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1607862286;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/stylist-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:162:\"[\"cosmetics\",\"Fashion\",\"girly\",\"hairdresser\",\"Landing Pages\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"Products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:15:{s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:15:{s:2:\"id\";i:16253;s:5:\"title\";s:33:\"Bicycle Adventures &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1607867944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bicycle-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:36:\"[\"Bicycle\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:534;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:392;a:15:{s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:393;a:15:{s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:15:{s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:15:{s:2:\"id\";i:16271;s:5:\"title\";s:42:\"Luxury Travel Destinations  &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1607868120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/luxury-travel-destinations-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:830;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:15:{s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:136;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:15:{s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:398;a:15:{s:2:\"id\";i:16283;s:5:\"title\";s:29:\"Vacation Deals &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1607868279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/vacation-deals-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:849;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:15:{s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:15:{s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:401;a:15:{s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:15:{s:2:\"id\";i:1503;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1494352113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:15:{s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:15:{s:2:\"id\";i:16299;s:5:\"title\";s:29:\"New Adventures &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1607868454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/new-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:50:\"[\"Adventures\",\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:847;s:11:\"trend_index\";i:799;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:15:{s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:15:{s:2:\"id\";i:16312;s:5:\"title\";s:26:\"Summer Time &#8211; Travel\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607868625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/summer-time-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:828;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:15:{s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:215;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:408;a:15:{s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:476;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:15:{s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:15:{s:2:\"id\";i:15870;s:5:\"title\";s:32:\"Tel Aviv Vacation &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1607860195;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/tel-aviv-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:15:{s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:612;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:15:{s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:15:{s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:15:{s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:15:{s:2:\"id\";i:16440;s:5:\"title\";s:31:\"Marketing Webinar &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1607934662;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/marketing-webinar-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:37:\"[\"Event\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:794;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:416;a:15:{s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:15:{s:2:\"id\";i:16212;s:5:\"title\";s:33:\"Wedding Celebration &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1607867299;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/wedding-celebration-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:35:\"[\"Event\",\"Landing Pages\",\"Wedding\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:625;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:15:{s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:419;a:15:{s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:15:{s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:15:{s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:210;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:422;a:15:{s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:15:{s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:15:{s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:354;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:15:{s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:15:{s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:621;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:427;a:15:{s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:827;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:428;a:15:{s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:15:{s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:699;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:15:{s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:614;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:15:{s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:15:{s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:15:{s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:15:{s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:506;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:15:{s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:15:{s:2:\"id\";i:519;s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";i:1477388808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:437;a:15:{s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:15:{s:2:\"id\";i:487;s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1477388357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:439;a:15:{s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:15:{s:2:\"id\";i:855;s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1494352061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:15:{s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:15:{s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:15:{s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:646;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:15:{s:2:\"id\";i:955;s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1494352069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:366;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:15:{s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:446;a:15:{s:2:\"id\";i:9373;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1542811219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:469;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:15:{s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:15:{s:2:\"id\";i:974;s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1494352071;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:360;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:15:{s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:15:{s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:15:{s:2:\"id\";i:11948;s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";i:1572153978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:452;a:15:{s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:437;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:453;a:15:{s:2:\"id\";i:754;s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";i:1485269691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:15:{s:2:\"id\";i:752;s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";i:1485269737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:416;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:15:{s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:15:{s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:15:{s:2:\"id\";i:753;s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";i:1485269710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:15:{s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:459;a:15:{s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"dance studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:15:{s:2:\"id\";i:751;s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";i:1485269743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:15:{s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"dance studio\",\"footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:15:{s:2:\"id\";i:2402;s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";i:1506441447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:15:{s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"dance studio\",\"header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:15:{s:2:\"id\";i:3626;s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";i:1513513193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:383;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:15:{s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:15:{s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:15:{s:2:\"id\";i:11966;s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";i:1572154274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:15:{s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:15:{s:2:\"id\";i:3632;s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";i:1513513171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:15:{s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:756;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:15:{s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:15:{s:2:\"id\";i:3619;s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";i:1513513137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:15:{s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:15:{s:2:\"id\";i:9425;s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";i:1542901234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:15:{s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:15:{s:2:\"id\";i:11973;s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";i:1572154523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:271;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:15:{s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:478;a:15:{s:2:\"id\";i:11981;s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";i:1572155125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:15:{s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:480;a:15:{s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:15:{s:2:\"id\";i:147;s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";i:1470829868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:5;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:482;a:15:{s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:483;a:15:{s:2:\"id\";i:777;s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";i:1485273092;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:15:{s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:485;a:15:{s:2:\"id\";i:2404;s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";i:1506441452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:15:{s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:487;a:15:{s:2:\"id\";i:492;s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";i:1477388365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:15:{s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:182;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:489;a:15:{s:2:\"id\";i:3451;s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";i:1512054116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:15:{s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:15:{s:2:\"id\";i:2152;s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";i:1499774132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:15:{s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:15:{s:2:\"id\";i:1068;s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";i:1488805928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:15:{s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:715;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:15:{s:2:\"id\";i:2813;s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";i:1509615049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:15:{s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:15:{s:2:\"id\";i:728;s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";i:1485269993;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:15:{s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:15:{s:2:\"id\";i:2403;s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";i:1506441428;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:592;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:15:{s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:15:{s:2:\"id\";i:1903;s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";i:1496822325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:15:{s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:164;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:15:{s:2:\"id\";i:2123;s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";i:1499772989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:504;a:15:{s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:15:{s:2:\"id\";i:1888;s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";i:1496822319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:15:{s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:400;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:15:{s:2:\"id\";i:1891;s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";i:1496822323;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:768;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:15:{s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:15:{s:2:\"id\";i:1880;s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";i:1496822317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:733;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:15:{s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:15:{s:2:\"id\";i:1885;s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";i:1496822321;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:15:{s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:15:{s:2:\"id\";i:2723;s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509633883;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:320;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:15:{s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:15:{s:2:\"id\";i:2145;s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";i:1499774125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:15:{s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:15:{s:2:\"id\";i:2155;s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";i:1499774130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:15:{s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:15:{s:2:\"id\";i:1085;s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";i:1488810874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:15:{s:2:\"id\";i:143;s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";i:1470820447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:15:{s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:616;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:15:{s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:523;a:15:{s:2:\"id\";i:101;s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";i:1470829785;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:15:{s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:525;a:15:{s:2:\"id\";i:140;s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";i:1470820463;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:15:{s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:527;a:15:{s:2:\"id\";i:213;s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";i:1470829766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:15:{s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:529;a:15:{s:2:\"id\";i:2802;s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509615440;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:15:{s:2:\"id\";i:2828;s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:531;a:15:{s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:576;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:15:{s:2:\"id\";i:1461;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1494352121;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:370;s:11:\"trend_index\";i:836;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:15:{s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:15:{s:2:\"id\";i:1460;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1494352124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:693;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:15:{s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:15:{s:2:\"id\";i:1459;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1494352125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:448;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:15:{s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:538;a:15:{s:2:\"id\";i:1052;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1488810873;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:15:{s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:15:{s:2:\"id\";i:1505;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1494352110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:15:{s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:48;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:15:{s:2:\"id\";i:726;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1485270062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:573;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:15:{s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:15:{s:2:\"id\";i:1613;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1494352129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:503;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:15:{s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:15:{s:2:\"id\";i:1612;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1494352127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:15:{s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:104;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:15:{s:2:\"id\";i:1614;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1494352131;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:440;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:15:{s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:15:{s:2:\"id\";i:906;s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1494352066;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:15:{s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:15:{s:2:\"id\";i:879;s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1494352064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:15:{s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:107;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:15:{s:2:\"id\";i:926;s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1494352068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:461;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:15:{s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:15:{s:2:\"id\";i:1032;s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1488810866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:687;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:15:{s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:15:{s:2:\"id\";i:730;s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1485273430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:15:{s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:15:{s:2:\"id\";i:643;s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1481549290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:737;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:15:{s:2:\"id\";i:542;s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1477388484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:15:{s:2:\"id\";i:1187;s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1490707385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:165;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:191;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:15:{s:2:\"id\";i:641;s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1481549264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:15:{s:2:\"id\";i:189;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1470820715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:15:{s:2:\"id\";i:1547;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1494352115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:15:{s:2:\"id\";i:1546;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1494352116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:15:{s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:15:{s:2:\"id\";i:1545;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1494352118;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:15:{s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:15:{s:2:\"id\";i:2714;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:15:{s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:15:{s:2:\"id\";i:195;s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1470820765;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:573;a:15:{s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:610;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:15:{s:2:\"id\";i:197;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1470825711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:575;a:15:{s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:15:{s:2:\"id\";i:1193;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1490707422;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:577;a:15:{s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:15:{s:2:\"id\";i:1415;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1494352106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:504;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:15:{s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:15:{s:2:\"id\";i:1414;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1494352107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:15:{s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:15:{s:2:\"id\";i:1413;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1494352109;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:15:{s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:15:{s:2:\"id\";i:1573;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1494352133;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:15:{s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:15:{s:2:\"id\";i:1572;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1494352134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:15:{s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:15:{s:2:\"id\";i:1570;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1494352136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:15:{s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:15:{s:2:\"id\";i:1571;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1494352138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:15:{s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:15:{s:2:\"id\";i:192;s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1470820734;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:593;a:15:{s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:15:{s:2:\"id\";i:2141;s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";i:1499774122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:15:{s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:15:{s:2:\"id\";i:137;s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";i:1470829828;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:597;a:15:{s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:15:{s:2:\"id\";i:256;s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";i:1470829796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:403;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:599;a:15:{s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:15:{s:2:\"id\";i:2150;s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";i:1499774127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:601;a:15:{s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:15:{s:2:\"id\";i:223;s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";i:1470820471;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:603;a:15:{s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:15:{s:2:\"id\";i:24;s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";i:1470248619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:24;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:605;a:15:{s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:15:{s:2:\"id\";i:184;s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";i:1470829889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:74;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:607;a:15:{s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:15:{s:2:\"id\";i:625;s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";i:1481549196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:15:{s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:610;a:15:{s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:15:{s:2:\"id\";i:187;s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";i:1470829892;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:612;a:15:{s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:15:{s:2:\"id\";i:238;s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";i:1470829865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:15:{s:2:\"id\";i:647;s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";i:1481549320;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:707;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:15:{s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:15:{s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:15:{s:2:\"id\";i:2138;s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";i:1499774119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:15:{s:2:\"id\";i:823;s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";i:1485272966;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:15:{s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:620;a:15:{s:2:\"id\";i:824;s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";i:1485272900;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:15:{s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:15:{s:2:\"id\";i:825;s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";i:1485272513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:623;a:15:{s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:79;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:15:{s:2:\"id\";i:245;s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";i:1470829876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:325;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:15:{s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:491;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:15:{s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:27;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:627;a:15:{s:2:\"id\";i:1075;s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";i:1488810871;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:628;a:15:{s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:62;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:629;a:15:{s:2:\"id\";i:1051;s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";i:1488810869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:15:{s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:15:{s:2:\"id\";i:1245;s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";i:1491207184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:15:{s:2:\"id\";i:1247;s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";i:1491207138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:633;a:15:{s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:812;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:15:{s:2:\"id\";i:1248;s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";i:1491207050;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:530;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:15:{s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"business\",\"footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:259;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:15:{s:2:\"id\";i:1249;s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";i:1491207380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:470;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:15:{s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:15:{s:2:\"id\";i:1250;s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";i:1491207450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:639;a:15:{s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:254;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:15:{s:2:\"id\";i:1260;s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";i:1491207507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:723;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:15:{s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:15:{s:2:\"id\";i:1261;s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";i:1491207584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:15:{s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:15:{s:2:\"id\";i:1272;s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";i:1491207674;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:367;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:15:{s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:15:{s:2:\"id\";i:1279;s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";i:1491207756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:286;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:647;a:15:{s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:15:{s:2:\"id\";i:1745;s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";i:1494849745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:15:{s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:15:{s:2:\"id\";i:1742;s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";i:1494849744;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:730;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:15:{s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:15:{s:2:\"id\";i:1748;s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";i:1494849742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:15:{s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:15:{s:2:\"id\";i:3963;s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";i:1516284821;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:15:{s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:355;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:15:{s:2:\"id\";i:3969;s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";i:1516284829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:644;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:15:{s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:15:{s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:15:{s:2:\"id\";i:3966;s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";i:1516284839;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:15:{s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:15:{s:2:\"id\";i:3972;s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";i:1516284847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:15:{s:2:\"id\";i:2080;s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";i:1508161124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:15:{s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:15:{s:2:\"id\";i:2088;s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";i:1508161129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:15:{s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"footer\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:15:{s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"header\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:15:{s:2:\"id\";i:2085;s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";i:1508161134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:775;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:15:{s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:15:{s:2:\"id\";i:2462;s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";i:1508243317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:15:{s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:15:{s:2:\"id\";i:2362;s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";i:1508243335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:456;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:15:{s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:443;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:15:{s:2:\"id\";i:614;s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";i:1481549169;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:15:{s:2:\"id\";i:2126;s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";i:1508325849;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:15:{s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:584;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:15:{s:2:\"id\";i:2129;s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";i:1508325881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:15:{s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:15:{s:2:\"id\";i:2135;s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";i:1508325922;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:15:{s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:15:{s:2:\"id\";i:2094;s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";i:1509621053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:15:{s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:15:{s:2:\"id\";i:2120;s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";i:1509631820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:15:{s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:338;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:15:{s:2:\"id\";i:3153;s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";i:1508950132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:15:{s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:15:{s:2:\"id\";i:3338;s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";i:1511203351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:15:{s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:15:{s:2:\"id\";i:3339;s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";i:1511203636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:15:{s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:342;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:15:{s:2:\"id\";i:3335;s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";i:1511203246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:15:{s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:545;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:15:{s:2:\"id\";i:3340;s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";i:1511203713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:15:{s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:15:{s:2:\"id\";i:3517;s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";i:1513877937;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:15:{s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:15:{s:2:\"id\";i:3734;s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";i:1514197794;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:638;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:15:{s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:15:{s:2:\"id\";i:3764;s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";i:1514198234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:15:{s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:15:{s:2:\"id\";i:3565;s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";i:1514204382;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:15:{s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:15:{s:2:\"id\";i:3862;s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";i:1514206745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:471;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:15:{s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:15:{s:2:\"id\";i:3777;s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";i:1514205420;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:15:{s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:529;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:15:{s:2:\"id\";i:420;s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";i:1475067229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:707;a:15:{s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:15:{s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:15:{s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:15:{s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:15:{s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:15:{s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:15:{s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:15:{s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:15:{s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:15:{s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:678;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:15:{s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:15:{s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:15:{s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:805;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:15:{s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:15:{s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:15:{s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:15:{s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:15:{s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:300;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:15:{s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:15:{s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:15:{s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:15:{s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:15:{s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:15:{s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:15:{s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:15:{s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:549;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:15:{s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:15:{s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:15:{s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:141;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:15:{s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:588;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:15:{s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:528;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:15:{s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:15:{s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:575;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:15:{s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:15:{s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:15:{s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:601;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:15:{s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:15:{s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:15:{s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:15:{s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:15:{s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:15:{s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:15:{s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:670;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:15:{s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:15:{s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:15:{s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:36;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:15:{s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:15:{s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:15:{s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:15:{s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:15:{s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:15:{s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:414;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:15:{s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:51;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:760;a:15:{s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:15:{s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:15:{s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:15:{s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:15:{s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:765;a:15:{s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:766;a:15:{s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:15:{s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:768;a:15:{s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:518;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:769;a:15:{s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:15:{s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:771;a:15:{s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:772;a:15:{s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:15:{s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:15:{s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:15:{s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:15:{s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:15:{s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:311;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:15:{s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:15:{s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:15:{s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:15:{s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:782;a:15:{s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:783;a:15:{s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:15:{s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:785;a:15:{s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:786;a:15:{s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:418;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:787;a:15:{s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:788;a:15:{s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:252;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:789;a:15:{s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:790;a:15:{s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:15:{s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:15:{s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:158;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:15:{s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:15:{s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:245;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:15:{s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:7;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:15:{s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:15:{s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:15:{s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:15:{s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:800;a:15:{s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:543;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:15:{s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:473;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:15:{s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:560;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:15:{s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:394;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:804;a:15:{s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:747;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:15:{s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:806;a:15:{s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:807;a:15:{s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:15:{s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:425;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:15:{s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:15:{s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:593;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:15:{s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:15:{s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:15:{s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:15:{s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:15:{s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:15:{s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:15:{s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:15:{s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:15:{s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:820;a:15:{s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:821;a:15:{s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:15:{s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:15:{s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:824;a:15:{s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:825;a:15:{s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:826;a:15:{s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:827;a:15:{s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:594;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:828;a:15:{s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:15:{s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:830;a:15:{s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:831;a:15:{s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:200;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:832;a:15:{s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:833;a:15:{s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:371;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:834;a:15:{s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:15:{s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:657;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:836;a:15:{s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:466;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:837;a:15:{s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:838;a:15:{s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:15:{s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:840;a:15:{s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:841;a:15:{s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:15:{s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:455;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:843;a:15:{s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:844;a:15:{s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:845;a:15:{s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:846;a:15:{s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:847;a:15:{s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:848;a:15:{s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:849;a:15:{s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:850;a:15:{s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:851;a:15:{s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:852;a:15:{s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:388;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:853;a:15:{s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:854;a:15:{s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:855;a:15:{s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:785;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:856;a:15:{s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:857;a:15:{s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:858;a:15:{s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:859;a:15:{s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:683;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:860;a:15:{s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:861;a:15:{s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:15:{s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:397;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:863;a:15:{s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:864;a:15:{s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:865;a:15:{s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:866;a:15:{s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:407;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:867;a:15:{s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(352,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:55:\"What Is Material Design? Definition, Uses, and Examples\";s:7:\"excerpt\";s:147:\"Material Design is the standard for designing and creating websites and apps. Discover why and learn how to use it to make a user-friendly website.\";s:7:\"created\";i:1612263675;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/what-is-material-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:53:\"Elementor SEO: How To Optimize Your Elementor Website\";s:7:\"excerpt\";s:154:\"SEO is crucial to the success of any website, but to many users, it still remains a mystery. Discover what SEO is and how to use it to optimize your site.\";s:7:\"created\";i:1611838485;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:113:\"https://elementor.com/blog/elementor-seo/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.1: Experiments, Performance Enhancements, And a New Landing Page Workflow\";s:7:\"excerpt\";s:162:\"The new Elementor version 3.1 features performance improvements, a new Landing Page area and workflow to manage your marketing pages, and exploratory experiments.\";s:7:\"created\";i:1611665700;s:5:\"badge\";s:11:\"New Feature\";s:3:\"url\";s:125:\"https://elementor.com/blog/introducing-elementor-3-1/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:33:\"How To Redirect URLs in WordPress\";s:7:\"excerpt\";s:152:\"Redirecting visitors from one page to another is an important part of website maintenance. Explore all the reasons for redirects and how to create them.\";s:7:\"created\";i:1611143960;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/redirect-url-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:33:\"How to Create the Perfect Favicon\";s:7:\"excerpt\";s:140:\"Favicons are an integral part of building up your brand and a recognizable website. Understand what they are, and how to use them correctly.\";s:7:\"created\";i:1610975844;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/favicon-complete-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(363,'auto_update_plugins','a:21:{i:0;s:19:\"akismet/akismet.php\";i:1;s:23:\"elementor/elementor.php\";i:2;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:3;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:4;s:9:\"hello.php\";i:5;s:27:\"ninja-forms/ninja-forms.php\";i:6;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:7;s:46:\"under-construction-page/under-construction.php\";i:8;s:27:\"woocommerce/woocommerce.php\";i:10;s:47:\"appointment-hour-booking/app-booking-plugin.php\";i:11;s:37:\"booking-calendar/booking_calendar.php\";i:12;s:51:\"bookly-responsive-appointment-booking-tool/main.php\";i:13;s:37:\"disable-comments/disable-comments.php\";i:14;s:25:\"duplicator/duplicator.php\";i:17;s:25:\"embedpress/embedpress.php\";i:22;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:23;s:25:\"templately/templately.php\";i:24;s:43:\"the-events-calendar/the-events-calendar.php\";i:27;s:45:\"woocommerce-bookings/woocommerce-bookings.php\";i:28;s:33:\"woo-bookings-calendar/wbclite.php\";i:29;s:45:\"woocommerce-payments/woocommerce-payments.php\";}','no'),(364,'action_scheduler_migration_status','complete','yes'),(365,'wc_remote_inbox_notifications_specs','a:15:{s:20:\"paypal_ppcp_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"paypal_ppcp_gtm_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Offer more options with the new PayPal\";s:7:\"content\";s:113:\"Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"open_wc_paypal_payments_product_page\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:61:\"https://woocommerce.com/products/woocommerce-paypal-payments/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-04-05 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-04-21 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-gateway-paypal-pro\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:37:\"woocommerce-gateway-paypal-pro-hosted\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:35:\"woocommerce-gateway-paypal-advanced\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:40:\"woocommerce-gateway-paypal-digital-goods\";}}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"woocommerce-paypal-here-gateway\";}}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-paypal-adaptive-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:27:\"woocommerce-paypal-payments\";s:7:\"version\";s:5:\"1.2.1\";s:8:\"operator\";s:1:\"<\";}}}}}s:23:\"facebook_pixel_api_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"facebook_pixel_api_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Improve the performance of your Facebook ads\";s:7:\"content\";s:168:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"upgrade_now_facebook_pixel_api\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:67:\"plugin-install.php?tab=plugin-information&plugin=&section=changelog\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-02-15 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-02-29 00:00:00\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"facebook-for-woocommerce\";s:7:\"version\";s:5:\"2.1.4\";s:8:\"operator\";s:2:\"<=\";}}}s:16:\"facebook_ec_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"facebook_ec_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:59:\"Sync your product catalog with Facebook to help boost sales\";s:7:\"content\";s:170:\"A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"learn_more_facebook_ec\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/facebook/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-03-01 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-03-15 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:24:\"facebook-for-woocommerce\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:31:\"wc-square-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-square-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:191:\"Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:97:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:38:\"wc-square-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"wc-square-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"Grow your business with Square and Apple Pay \";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:104:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wcpay-apple-pay-is-now-available\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wcpay-apple-pay-is-now-available\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Apple Pay is now available with WooCommerce Payments!\";s:7:\"content\";s:397:\"Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"add-apple-pay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:69:\"/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:121:\"https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.2.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";b:0;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}s:27:\"wcpay-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wcpay-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:205:\"Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:96:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"wcpay-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"wcpay-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Grow your business with WooCommerce Payments and Apple Pay\";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:103:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}}','yes'),(369,'nf_active_promotions','{\"dashboard\":[{\"id\":\"personal-20\",\"location\":\"dashboard\",\"type\":\"personal\",\"content\":\"<a href=\\\"https:\\/\\/ninjaforms.com\\/personal-membership\\/?utm_source=ninja-forms-plugin&utm_medium=dashboard-banner-ad&utm_campaign=personal-banner-ad&utm_content=personal-20\\\" target=\\\"_blank\\\" class=\\\"nf-remove-promo-styling\\\"><img src=\\\"https:\\/\\/edssnow.com\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-personal-20.png\\\"><\\/a>\",\"script\":\"\"},{\"id\":\"personal-50\",\"location\":\"dashboard\",\"type\":\"personal\",\"content\":\"<a href=\\\"https:\\/\\/ninjaforms.com\\/personal-membership\\/?utm_source=ninja-forms-plugin&utm_medium=dashboard-banner-ad&utm_campaign=personal-banner-ad&utm_content=personal-50\\\" target=\\\"_blank\\\" class=\\\"nf-remove-promo-styling\\\"><img src=\\\"https:\\/\\/edssnow.com\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-personal-50.png\\\"><\\/a>\",\"script\":\"\"},{\"id\":\"sendwp-banner\",\"location\":\"dashboard\",\"content\":\"<span aria-label=\\\"SendWP. Getting WordPress email into an inbox shouldn\'t be that hard! Never miss another receipt, form submission, or any WordPress email ever again.\\\" style=\\\"cursor:pointer;width:800px;height:83px;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;background-image:url(\'https:\\/\\/edssnow.com\\/wp-content\\/plugins\\/ninja-forms\\/assets\\/img\\/promotions\\/dashboard-banner-sendwp.png\');display:block;\\\"><\\/span>\",\"type\":\"sendwp\",\"script\":\"\\n      setTimeout(function(){ \\/* Wait for services to init. *\\/\\n        var data = {\\n          width: 450,\\n          closeOnClick: \'body\',\\n          closeOnEsc: true,\\n          content: \'<p><h2>Frustrated that WordPress email isn\\u2019t being received?<\\/h2><p>Form submission notifications not hitting your inbox? Some of your visitors getting form feedback via email, others not? By default, your WordPress site sends emails through your web host, which can be unreliable. Your host has spent lots of time and money optimizing to serve your pages, not send your emails.<\\/p><h3>Sign up for SendWP today, and never deal with WordPress email issues again!<\\/h3><p>SendWP is an email service that removes your web host from the email equation.<\\/p><ul style=&quot;list-style-type:initial;margin-left: 20px;&quot;><li>Sends email through dedicated email service, increasing email deliverability.<\\/li><li>Keeps form submission emails out of spam by using a trusted email provider.<\\/li><li>On a shared web host? Don\\u2019t worry about emails being rejected because of blocked IP addresses.<\\/li><li><strong>$1 for the first month. $9\\/month after. Cancel anytime!<\\/strong><\\/li><\\/ul><\\/p><br \\/>\',\\n          btnPrimary: {\\n            text: \'Sign me up!\',\\n            callback: function() {\\n              var spinner = document.createElement(\'span\');\\n              spinner.classList.add(\'dashicons\', \'dashicons-update\', \'dashicons-update-spin\');\\n              var w = this.offsetWidth;\\n              this.innerHTML = spinner.outerHTML;\\n              this.style.width = w+\'px\';\\n              ninja_forms_sendwp_remote_install();\\n            }\\n          },\\n          btnSecondary: {\\n            text: \'Cancel\',\\n            callback: function() {\\n              sendwpModal.toggleModal(false);\\n            }\\n          }\\n        }\\n        var sendwpModal = new NinjaModal(data);\\n      }, 500);\\n    \"}]}','no'),(372,'eael_editor_updated_at','1614651544','yes'),(373,'elementor_active_kit','10','yes'),(376,'temp_count','a:1:{s:11:\"Default Kit\";s:11:\"Default Kit\";}','yes'),(378,'cb70d11b8_elements','a:2:{i:4;s:10:\"fancy-text\";i:113;s:5:\"ninja\";}','yes'),(379,'cb70d11b8_custom_js','','yes'),(380,'cb70d11b8_updated_at','1614651544','yes'),(382,'ninja_forms_optin_reported','1','yes'),(383,'ea1d43322_elements','a:0:{}','yes'),(384,'ea1d43322_custom_js','','yes'),(385,'ea1d43322_updated_at','1614651544','yes'),(393,'921d470f8_elements','a:0:{}','yes'),(394,'921d470f8_custom_js','','yes'),(395,'921d470f8_updated_at','1611553489','yes'),(396,'40e4f8434_elements','a:0:{}','yes'),(397,'40e4f8434_custom_js','','yes'),(398,'40e4f8434_updated_at','1614651544','yes'),(399,'category_children','a:0:{}','yes'),(400,'379c0f897_elements','a:0:{}','yes'),(401,'379c0f897_custom_js','','yes'),(402,'379c0f897_updated_at','1611553489','yes'),(425,'ucp_options','a:33:{s:6:\"status\";s:1:\"0\";s:11:\"license_key\";s:0:\"\";s:14:\"license_active\";b:0;s:15:\"license_expires\";s:10:\"1900-01-01\";s:12:\"license_type\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:14:\"ga_tracking_id\";s:0:\"\";s:5:\"theme\";s:11:\"cyber_chick\";s:10:\"custom_css\";s:0:\"\";s:5:\"title\";s:34:\"[site-title] is under construction\";s:11:\"description\";s:14:\"[site-tagline]\";s:8:\"heading1\";s:40:\"Sorry, we\'re doing some work on the site\";s:7:\"content\";s:89:\"Thank you for being patient. We are doing some work on the site and will be back shortly.\";s:15:\"social_facebook\";s:0:\"\";s:14:\"social_twitter\";s:0:\"\";s:15:\"social_linkedin\";s:0:\"\";s:14:\"social_youtube\";s:0:\"\";s:12:\"social_vimeo\";s:0:\"\";s:16:\"social_pinterest\";s:0:\"\";s:15:\"social_dribbble\";s:0:\"\";s:14:\"social_behance\";s:0:\"\";s:16:\"social_instagram\";s:0:\"\";s:13:\"social_tumblr\";s:0:\"\";s:9:\"social_vk\";s:0:\"\";s:12:\"social_email\";s:0:\"\";s:12:\"social_phone\";s:0:\"\";s:12:\"social_skype\";s:0:\"\";s:15:\"social_telegram\";s:0:\"\";s:15:\"social_whatsapp\";s:0:\"\";s:12:\"login_button\";s:1:\"1\";s:8:\"linkback\";i:0;s:17:\"whitelisted_roles\";a:1:{i:0;s:13:\"administrator\";}s:17:\"whitelisted_users\";a:0:{}}','yes'),(458,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":5,\"critical\":1}','yes'),(469,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(470,'woocommerce_task_list_hidden','yes','yes'),(473,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(511,'elementor_log','a:10:{s:32:\"c25f5734ff24ebf900f3a0b6cefa3379\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-01-27 03:16:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.16\";s:2:\"to\";s:5:\"3.1.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-01-27 03:16:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.0.16\";s:2:\"to\";s:5:\"3.1.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f988327bc57aa3a970608f3cc20cdea7\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"35000\";s:7:\"\0*\0file\";s:89:\"http://edssnow.com/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.1.0\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-01-27 11:47:03\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:54:\"Cannot read property \\&#039;global\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:9;s:14:\"\0*\0times_dates\";a:9:{i:0;s:19:\"2021-01-27 11:47:03\";i:1;s:19:\"2021-01-27 11:47:32\";i:2;s:19:\"2021-01-27 11:47:39\";i:3;s:19:\"2021-01-27 11:47:53\";i:4;s:19:\"2021-01-27 11:48:05\";i:5;s:19:\"2021-01-27 11:48:31\";i:6;s:19:\"2021-01-27 11:50:49\";i:7;s:19:\"2021-01-27 12:13:28\";i:8;s:19:\"2021-01-27 14:20:59\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1611748023\";s:7:\"message\";s:44:\"Cannot read property \\\'global\\\' of undefined\";s:3:\"url\";s:89:\"http://edssnow.com/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=3.1.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"35000\";}}s:32:\"2bad528cf886aad8a487b93d374b8c4d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:3:\"233\";s:7:\"\0*\0file\";s:112:\"http://edssnow.com/wp-content/plugins/premium-addons-for-elementor/assets/frontend/min-js/typed.min.js?ver=4.2.0\";s:7:\"\0*\0line\";s:1:\"1\";s:7:\"\0*\0date\";s:19:\"2021-01-30 20:57:11\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read property \\&#039;toLowerCase\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2021-01-30 20:57:11\";i:1;s:19:\"2021-01-31 00:46:27\";i:2;s:19:\"2021-02-01 12:23:51\";i:3;s:19:\"2021-02-02 15:00:59\";i:4;s:19:\"2021-02-09 02:18:08\";i:5;s:19:\"2021-02-09 14:09:29\";i:6;s:19:\"2021-02-09 14:10:19\";i:7;s:19:\"2021-02-09 14:39:45\";i:8;s:19:\"2021-02-09 17:42:53\";i:9;s:19:\"2021-02-09 22:05:57\";i:10;s:19:\"2021-02-10 15:42:58\";i:11;s:19:\"2021-02-10 16:49:57\";i:12;s:19:\"2021-02-16 23:56:07\";i:13;s:19:\"2021-02-16 23:56:30\";i:14;s:19:\"2021-02-17 16:04:00\";i:15;s:19:\"2021-03-02 02:04:43\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1612040231\";s:7:\"message\";s:49:\"Cannot read property \\\'toLowerCase\\\' of undefined\";s:3:\"url\";s:112:\"http://edssnow.com/wp-content/plugins/premium-addons-for-elementor/assets/frontend/min-js/typed.min.js?ver=4.2.0\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"233\";}}s:32:\"04197f5698c9ecb6f71e6d60c9b846d3\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"16820\";s:7:\"\0*\0file\";s:87:\"http://edssnow.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-01-31 01:48:21\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:48:\"Cannot read property \\&#039;clone\\&#039; of null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3160;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2021-02-20 16:47:52\";i:1;s:19:\"2021-02-20 16:47:52\";i:2;s:19:\"2021-02-20 16:47:52\";i:3;s:19:\"2021-02-20 16:47:52\";i:4;s:19:\"2021-02-20 16:47:52\";i:5;s:19:\"2021-02-20 16:47:52\";i:6;s:19:\"2021-02-20 16:47:52\";i:7;s:19:\"2021-02-20 16:47:52\";i:8;s:19:\"2021-02-20 16:47:52\";i:9;s:19:\"2021-02-20 16:47:52\";i:10;s:19:\"2021-02-20 16:47:52\";i:11;s:19:\"2021-02-20 16:47:52\";i:12;s:19:\"2021-02-20 16:47:52\";i:13;s:19:\"2021-02-20 16:47:52\";i:14;s:19:\"2021-02-20 16:47:52\";i:15;s:19:\"2021-02-20 16:47:52\";i:16;s:19:\"2021-02-20 16:47:52\";i:17;s:19:\"2021-02-20 16:47:52\";i:18;s:19:\"2021-02-20 16:47:52\";i:19;s:19:\"2021-02-20 16:47:52\";i:20;s:19:\"2021-02-20 16:47:52\";i:21;s:19:\"2021-02-20 16:47:52\";i:22;s:19:\"2021-02-20 16:47:52\";i:23;s:19:\"2021-02-20 16:47:52\";i:24;s:19:\"2021-02-20 16:47:52\";i:25;s:19:\"2021-02-20 16:47:52\";i:26;s:19:\"2021-02-20 16:47:52\";i:27;s:19:\"2021-02-20 16:47:52\";i:28;s:19:\"2021-02-20 16:47:52\";i:29;s:19:\"2021-02-20 16:47:52\";i:30;s:19:\"2021-02-20 16:47:52\";i:31;s:19:\"2021-02-20 16:47:52\";i:32;s:19:\"2021-02-20 16:47:52\";i:33;s:19:\"2021-02-20 16:47:52\";i:34;s:19:\"2021-02-20 16:47:57\";i:35;s:19:\"2021-02-20 16:47:57\";i:36;s:19:\"2021-02-20 16:47:57\";i:37;s:19:\"2021-02-20 16:47:57\";i:38;s:19:\"2021-02-20 16:47:57\";i:39;s:19:\"2021-02-20 16:47:57\";i:40;s:19:\"2021-02-20 16:47:57\";i:41;s:19:\"2021-02-20 16:47:57\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1612057701\";s:7:\"message\";s:38:\"Cannot read property \\\'clone\\\' of null\";s:3:\"url\";s:87:\"http://edssnow.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"16820\";}}s:32:\"a10411800be150f076b867144ab9bf7e\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"21012\";s:7:\"\0*\0file\";s:87:\"http://edssnow.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-01-31 01:48:22\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:53:\"Cannot read property \\&#039;changestop\\&#039; of null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:86;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2021-02-20 16:37:04\";i:1;s:19:\"2021-02-20 16:37:07\";i:2;s:19:\"2021-02-20 16:37:18\";i:3;s:19:\"2021-02-20 16:37:19\";i:4;s:19:\"2021-02-20 16:37:47\";i:5;s:19:\"2021-02-20 16:37:59\";i:6;s:19:\"2021-02-20 16:38:12\";i:7;s:19:\"2021-02-20 16:41:45\";i:8;s:19:\"2021-02-20 16:41:46\";i:9;s:19:\"2021-02-20 16:41:52\";i:10;s:19:\"2021-02-20 16:41:53\";i:11;s:19:\"2021-02-20 16:41:54\";i:12;s:19:\"2021-02-20 16:42:46\";i:13;s:19:\"2021-02-20 16:42:47\";i:14;s:19:\"2021-02-20 16:42:55\";i:15;s:19:\"2021-02-20 16:42:58\";i:16;s:19:\"2021-02-20 16:43:02\";i:17;s:19:\"2021-02-20 16:44:30\";i:18;s:19:\"2021-02-20 16:44:41\";i:19;s:19:\"2021-02-20 16:44:42\";i:20;s:19:\"2021-02-20 16:44:45\";i:21;s:19:\"2021-02-20 16:44:50\";i:22;s:19:\"2021-02-20 16:44:51\";i:23;s:19:\"2021-02-20 16:44:52\";i:24;s:19:\"2021-02-20 16:44:52\";i:25;s:19:\"2021-02-20 16:44:52\";i:26;s:19:\"2021-02-20 16:44:57\";i:27;s:19:\"2021-02-20 16:44:57\";i:28;s:19:\"2021-02-20 16:44:58\";i:29;s:19:\"2021-02-20 16:44:58\";i:30;s:19:\"2021-02-20 16:45:02\";i:31;s:19:\"2021-02-20 16:45:04\";i:32;s:19:\"2021-02-20 16:45:04\";i:33;s:19:\"2021-02-20 16:46:42\";i:34;s:19:\"2021-02-20 16:46:42\";i:35;s:19:\"2021-02-20 16:46:42\";i:36;s:19:\"2021-02-20 16:47:35\";i:37;s:19:\"2021-02-20 16:47:53\";i:38;s:19:\"2021-02-20 16:47:53\";i:39;s:19:\"2021-02-20 16:47:57\";i:40;s:19:\"2021-02-20 16:47:58\";i:41;s:19:\"2021-02-20 16:47:58\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1612057702\";s:7:\"message\";s:43:\"Cannot read property \\\'changestop\\\' of null\";s:3:\"url\";s:87:\"http://edssnow.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"21012\";}}s:32:\"5f59461f6b946574f383627629928a55\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-01-31 22:37:33\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.0\";s:2:\"to\";s:5:\"3.1.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-01-31 22:37:33\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.0\";s:2:\"to\";s:5:\"3.1.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"63272d93c575095e3f07201bf91ee489\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"279346\";s:7:\"\0*\0file\";s:81:\"http://edssnow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.1.1\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-02-09 14:09:55\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:58:\"elementorFrontend.elements.window.jQuery is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:32;s:14:\"\0*\0times_dates\";a:32:{i:0;s:19:\"2021-02-09 14:09:55\";i:1;s:19:\"2021-02-09 14:09:55\";i:2;s:19:\"2021-02-09 14:09:55\";i:3;s:19:\"2021-02-09 14:09:55\";i:4;s:19:\"2021-02-09 14:09:55\";i:5;s:19:\"2021-02-09 14:09:55\";i:6;s:19:\"2021-02-09 14:09:55\";i:7;s:19:\"2021-02-09 14:09:55\";i:8;s:19:\"2021-02-09 14:09:55\";i:9;s:19:\"2021-02-09 14:09:55\";i:10;s:19:\"2021-02-09 14:09:55\";i:11;s:19:\"2021-02-09 14:09:55\";i:12;s:19:\"2021-02-09 14:09:56\";i:13;s:19:\"2021-02-09 14:09:56\";i:14;s:19:\"2021-02-09 14:09:56\";i:15;s:19:\"2021-02-09 14:09:56\";i:16;s:19:\"2021-02-09 14:09:56\";i:17;s:19:\"2021-02-09 14:09:56\";i:18;s:19:\"2021-02-09 14:09:56\";i:19;s:19:\"2021-02-09 14:09:56\";i:20;s:19:\"2021-02-09 14:09:56\";i:21;s:19:\"2021-02-09 14:09:56\";i:22;s:19:\"2021-02-09 14:09:56\";i:23;s:19:\"2021-02-09 14:09:56\";i:24;s:19:\"2021-02-09 14:09:56\";i:25;s:19:\"2021-02-09 14:09:56\";i:26;s:19:\"2021-02-09 14:09:56\";i:27;s:19:\"2021-02-09 14:09:56\";i:28;s:19:\"2021-02-09 14:09:56\";i:29;s:19:\"2021-02-09 14:09:56\";i:30;s:19:\"2021-02-09 14:09:56\";i:31;s:19:\"2021-02-09 14:09:56\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1612879795\";s:7:\"message\";s:58:\"elementorFrontend.elements.window.jQuery is not a function\";s:3:\"url\";s:81:\"http://edssnow.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.1.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"279346\";}}s:32:\"14d6d99b91c7a9d3bc7bef1538b2a9ec\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-03-03 04:07:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.1.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-03-03 04:07:14\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.1\";s:2:\"to\";s:5:\"3.1.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"a4e9400140abd729218a4bc2e2c77553\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-03-04 00:29:07\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.2\";s:2:\"to\";s:5:\"3.1.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-03-04 00:29:07\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.2\";s:2:\"to\";s:5:\"3.1.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c444da5b75ceb6ce6c03171872f8669c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-03-10 11:16:05\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.3\";s:2:\"to\";s:5:\"3.1.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-03-10 11:16:05\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"3.1.3\";s:2:\"to\";s:5:\"3.1.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}}','no'),(552,'_transient_woocommerce_reports-transient-version','1616191609','yes'),(557,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(558,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(559,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(560,'ucp_notices','a:0:{}','yes'),(566,'current_theme','Astra','yes'),(567,'theme_mods_astra','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:16;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:124;}','yes'),(568,'theme_switched','','yes'),(571,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(573,'astra-settings','a:48:{s:18:\"theme-auto-version\";s:5:\"3.0.1\";s:22:\"is_theme_queue_running\";b:0;s:33:\"_astra_pb_compatibility_completed\";b:1;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: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: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: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:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";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-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: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: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: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: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:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";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:\"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: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: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: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: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:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";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: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: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: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: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: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: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: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: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:11:\"theme-color\";s:7:\"#66c010\";s:10:\"link-color\";s:7:\"#66c010\";s:12:\"link-h-color\";s:7:\"#001f43\";s:12:\"button-color\";s:7:\"#002145\";s:15:\"button-bg-color\";s:7:\"#66c010\";s:18:\"display-site-title\";b:0;}','yes'),(585,'40e314001_elements','a:0:{}','yes'),(586,'40e314001_custom_js','','yes'),(587,'40e314001_updated_at','1614651544','yes'),(588,'_transient_shipping-transient-version','1611747776','yes'),(591,'41a07179a_elements','a:0:{}','yes'),(592,'41a07179a_custom_js','','yes'),(593,'41a07179a_updated_at','1613352885','yes'),(606,'96481cb86_elements','a:2:{i:1;s:10:\"fancy-text\";i:40;s:12:\"creative-btn\";}','yes'),(607,'96481cb86_custom_js','','yes'),(608,'96481cb86_updated_at','1612066829','yes'),(618,'elementor_controls_usage','a:2:{s:7:\"wp-page\";a:18:{s:6:\"column\";a:2:{s:5:\"count\";i:120;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:119;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:72;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:45;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:38;s:16:\"background_color\";i:33;s:28:\"background_slideshow_gallery\";i:3;s:21:\"background_video_link\";i:1;}s:12:\"section_typo\";a:1:{s:10:\"color_text\";i:2;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_image\";i:2;s:27:\"background_overlay_position\";i:2;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_attachment\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:12;s:6:\"margin\";i:30;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:50;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:50;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:47;s:22:\"typography_font_family\";i:47;s:22:\"typography_font_weight\";i:47;s:10:\"text_color\";i:43;s:5:\"align\";i:24;s:22:\"typography_line_height\";i:5;s:20:\"typography_font_size\";i:4;s:26:\"typography_text_decoration\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:34;s:7:\"_margin\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:34;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:34;s:5:\"align\";i:28;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:34;s:21:\"typography_typography\";i:34;s:22:\"typography_font_family\";i:34;s:22:\"typography_font_weight\";i:34;s:25:\"typography_letter_spacing\";i:28;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:18;s:25:\"typography_text_transform\";i:16;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:14;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:15:\"_section_border\";a:1:{s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:10:\"eael-ninja\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_info_box\";a:4:{s:17:\"contact_form_list\";i:2;s:10:\"form_title\";i:2;s:24:\"custom_title_description\";i:1;s:17:\"form_title_custom\";i:1;}}}}s:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:4:\"loop\";i:1;s:14:\"modestbranding\";i:1;s:10:\"yt_privacy\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:12:\"aspect_ratio\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}}}s:18:\"eael-adv-accordion\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:43:\"eael_section_adv_accordion_content_settings\";a:1:{s:22:\"eael_adv_accordion_tab\";i:1;}}}}s:19:\"embedpres_elementor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:37:\"embedpress_elementor_content_settings\";a:1:{s:23:\"embedpress_embeded_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:7;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:5;s:11:\"hide_tablet\";i:2;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:1;s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"icon\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:1;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:2;}s:21:\"section_style_content\";a:7:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_family\";i:2;s:34:\"description_typography_font_weight\";i:2;}}}}s:15:\"eael-fancy-text\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:23:\"eael_fancy_text_content\";a:3:{s:22:\"eael_fancy_text_prefix\";i:1;s:23:\"eael_fancy_text_strings\";i:1;s:22:\"eael_fancy_text_suffix\";i:1;}}s:5:\"style\";a:2:{s:29:\"eael_fancy_text_prefix_styles\";a:6:{s:28:\"eael_fancy_text_prefix_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}s:30:\"eael_fancy_text_strings_styles\";a:6:{s:29:\"eael_fancy_text_strings_color\";i:1;s:45:\"eael_fancy_text_strings_typography_typography\";i:1;s:46:\"eael_fancy_text_strings_typography_font_family\";i:1;s:44:\"eael_fancy_text_strings_typography_font_size\";i:1;s:46:\"eael_fancy_text_strings_typography_font_weight\";i:1;s:46:\"eael_fancy_text_strings_typography_line_height\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:4:\"link\";i:4;s:5:\"align\";i:4;s:4:\"size\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:4;s:29:\"button_background_hover_color\";i:4;}}}}s:23:\"premium-addon-video-box\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:34:\"premium_video_box_general_settings\";a:4:{s:22:\"premium_video_box_link\";i:1;s:28:\"premium_video_box_img_effect\";i:1;s:22:\"premium_video_box_loop\";i:1;s:26:\"premium_video_box_controls\";i:1;}s:32:\"premium_video_box_image_settings\";a:1:{s:23:\"premium_video_box_image\";i:1;}}s:5:\"style\";a:1:{s:28:\"premium_video_box_icon_style\";a:1:{s:32:\"premium_video_box_play_icon_size\";i:1;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:32;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:32;s:4:\"view\";i:32;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:32;s:4:\"size\";i:32;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:32;}}}}s:17:\"premium-icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}s:23:\"display_options_section\";a:5:{s:11:\"layout_type\";i:1;s:23:\"premium_icon_list_align\";i:1;s:36:\"premium_icon_list_animation_switcher\";i:1;s:27:\"premium_icon_list_animation\";i:1;s:17:\"hover_effect_type\";i:1;}}s:5:\"style\";a:3:{s:18:\"icon_style_section\";a:2:{s:9:\"icon_size\";i:1;s:10:\"icon_color\";i:1;}s:19:\"title_style_section\";a:6:{s:32:\"list_title_typography_typography\";i:1;s:33:\"list_title_typography_font_family\";i:1;s:31:\"list_title_typography_font_size\";i:1;s:33:\"list_title_typography_font_weight\";i:1;s:11:\"title_color\";i:1;s:17:\"title_hover_color\";i:1;}s:19:\"badge_style_section\";a:1:{s:28:\"badge_background_style_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}s:7:\"wp-post\";a:9:{s:9:\"site-logo\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"section_site_image\";a:3:{s:18:\"site_logo_fallback\";i:1;s:12:\"custom_image\";i:1;s:19:\"site_logo_size_size\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:7;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}s:18:\"section_text_style\";a:3:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"style\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:1;}}}}s:15:\"navigation-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:1:{s:13:\"navmenu_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;}s:12:\"style_toggle\";a:1:{s:12:\"toggle_color\";i:1;}s:22:\"section_style_dropdown\";a:2:{s:30:\"background_color_dropdown_item\";i:1;s:20:\"divider_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:17:\"hfe-search-button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_input_style\";a:3:{s:27:\"input_typography_typography\";i:1;s:28:\"input_typography_font_family\";i:1;s:28:\"input_typography_font_weight\";i:1;}s:20:\"section_toggle_style\";a:1:{s:12:\"toggle_color\";i:1;}}}}}}','no'),(817,'9d7a4a746_elements','a:0:{}','yes'),(818,'9d7a4a746_custom_js','','yes'),(819,'9d7a4a746_updated_at','1614651544','yes'),(1249,'f09515751_elements','a:0:{}','yes'),(1250,'f09515751_custom_js','','yes'),(1251,'f09515751_updated_at','1614651544','yes'),(1347,'WPLANG','','yes'),(1348,'new_admin_email','ekow@esselwebdesign.com','yes'),(1349,'bsf_analytics_optin','no','yes'),(1388,'ninja_forms_do_not_allow_tracking','1','yes'),(1389,'nf_form_tel_data','1','no'),(1411,'nf_sub_expiration','a:0:{}','yes'),(1414,'nf_form_tel_sent','true','no'),(1481,'2dfbf5d3d_elements','a:1:{i:11;s:5:\"ninja\";}','yes'),(1482,'2dfbf5d3d_custom_js','','yes'),(1483,'2dfbf5d3d_updated_at','1614651544','yes'),(1502,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(1503,'_transient_product_query-transient-version','1616902834','yes'),(1551,'c019b2d68_elements','a:0:{}','yes'),(1552,'c019b2d68_custom_js','','yes'),(1553,'c019b2d68_updated_at','1614651544','yes'),(1622,'wc_bookings_version','1.15.22','yes'),(1623,'wc_bookings_db_version','1.14.5','yes'),(1624,'wc_bookings_timezone_settings','a:3:{s:31:\"use_server_timezone_for_actions\";s:2:\"no\";s:19:\"use_client_timezone\";s:2:\"no\";s:19:\"use_client_firstday\";s:2:\"no\";}','yes'),(1630,'wbc_notices','a:1:{s:19:\"premium_advertising\";a:3:{s:7:\"message\";s:239:\"You\'re using a limited version of WooCommerce Bookings Calendar. For more features and better support, please <a href=\'https://edssnow.com/wp-admin/admin.php?page=woo-bookings-calendar&amp;tab=tab-buy.php\'>consider the premium version</a>.\";s:4:\"type\";s:7:\"success\";s:11:\"dismissDays\";i:0;}}','yes'),(1633,'_transient_bookings-transient-version','1617580035','yes'),(1637,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1613515999;}','no'),(1641,'product_cat_children','a:0:{}','yes'),(1642,'_transient_product-transient-version','1612906061','yes'),(1670,'tribe_events_calendar_options','a:12:{s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";s:14:\"schema-version\";s:7:\"5.5.0.1\";s:21:\"previous_ecp_versions\";a:4:{i:0;s:1:\"0\";i:1;s:5:\"5.3.2\";i:2;s:7:\"5.4.0.2\";i:3;s:5:\"5.5.0\";}s:18:\"latest_ecp_version\";s:7:\"5.5.0.1\";s:16:\"views_v2_enabled\";b:1;s:12:\"postsPerPage\";i:12;s:16:\"monthEventAmount\";i:3;s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:39:\"last-update-message-the-events-calendar\";s:5:\"5.3.2\";}','yes'),(1673,'tribe_last_updated_option','1617661331.6581','yes'),(1674,'tribe_last_save_post','1617661331.6623','yes'),(1675,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1677,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:42:\"the-events-calendar/common/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.1\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1612201597;s:11:\"plugin_path\";s:43:\"the-events-calendar/the-events-calendar.php\";}}s:7:\"abspath\";s:38:\"/home2/church/public_html/edssnow.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"the-events-calendar/the-events-calendar.php\";s:8:\"sdk_path\";s:42:\"the-events-calendar/common/vendor/freemius\";s:7:\"version\";s:5:\"2.4.1\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1612201597;}}','yes'),(1678,'fs_debug_mode','','yes'),(1679,'fs_accounts','a:5:{s:21:\"id_slug_type_path_map\";a:1:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}}s:11:\"plugin_data\";a:1:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1612201597;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.1\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.5.0\";s:14:\"plugin_version\";s:7:\"5.5.0.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:11:\"edssnow.com\";s:9:\"server_ip\";s:15:\"192.254.186.134\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1612201599;s:7:\"version\";s:5:\"5.3.2\";}s:15:\"prev_is_premium\";b:0;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1612201610;s:7:\"version\";s:5:\"5.3.2\";}}}s:13:\"file_slug_map\";a:1:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";}s:7:\"plugins\";a:1:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:7:\"5.5.0.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"6163fbf001d4f312d2a90554a098939b\";}','yes'),(1681,'fs_gdpr','a:2:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(1682,'tribe_last_generate_rewrite_rules','1617661331.6167','yes'),(1698,'4eec06145_elements','a:0:{}','yes'),(1699,'4eec06145_custom_js','','yes'),(1700,'4eec06145_updated_at','1614651544','yes'),(1773,'6cc1b24ad_elements','a:0:{}','yes'),(1774,'6cc1b24ad_custom_js','','yes'),(1775,'6cc1b24ad_updated_at','1614651544','yes'),(2489,'elementor_connect_site_key','38cb29fb45e65b524554bf3bd31c3545','yes'),(2918,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"ekow@esselwebdesign.com\";s:7:\"version\";s:3:\"5.7\";s:9:\"timestamp\";i:1615327988;}','no'),(3193,'_templately_migrate','1.2.1','yes'),(3195,'_templately_trigger','1612926676','yes'),(3196,'_templately_categories','a:3:{s:15:\"item_categories\";a:5:{i:0;a:3:{s:2:\"id\";i:1;s:4:\"name\";s:6:\"Header\";s:6:\"parent\";N;}i:1;a:3:{s:2:\"id\";i:2;s:4:\"name\";s:6:\"Footer\";s:6:\"parent\";N;}i:2;a:3:{s:2:\"id\";i:8;s:4:\"name\";s:4:\"Hero\";s:6:\"parent\";N;}i:3;a:3:{s:2:\"id\";i:19;s:4:\"name\";s:5:\"Block\";s:6:\"parent\";N;}i:4;a:3:{s:2:\"id\";i:20;s:4:\"name\";s:9:\"Gutenberg\";s:6:\"parent\";N;}}s:15:\"page_categories\";a:6:{i:0;a:3:{s:2:\"id\";i:4;s:4:\"name\";s:7:\"Archive\";s:6:\"parent\";i:3;}i:1;a:3:{s:2:\"id\";i:10;s:4:\"name\";s:15:\"Product Archive\";s:6:\"parent\";i:3;}i:2;a:3:{s:2:\"id\";i:11;s:4:\"name\";s:14:\"Single Product\";s:6:\"parent\";i:3;}i:3;a:3:{s:2:\"id\";i:12;s:4:\"name\";s:11:\"Single Post\";s:6:\"parent\";i:3;}i:4;a:3:{s:2:\"id\";i:15;s:4:\"name\";s:12:\"Landing Page\";s:6:\"parent\";i:3;}i:5;a:3:{s:2:\"id\";i:16;s:4:\"name\";s:11:\"Single Page\";s:6:\"parent\";i:3;}}s:15:\"pack_categories\";a:3:{i:0;a:3:{s:2:\"id\";i:17;s:4:\"name\";s:13:\"Site Template\";s:6:\"parent\";N;}i:1;a:3:{s:2:\"id\";i:15;s:4:\"name\";s:12:\"Landing Page\";s:6:\"parent\";i:3;}i:2;a:3:{s:2:\"id\";i:16;s:4:\"name\";s:11:\"Single Page\";s:6:\"parent\";i:3;}}}','yes'),(3198,'_templately_dependencies','a:11:{i:0;a:5:{s:2:\"id\";i:1;s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/b3d3f6deb25200fc5d83dcff2fb8cd20fe2c2696.png\";s:6:\"is_pro\";b:1;s:8:\"platform\";s:9:\"elementor\";}i:1;a:5:{s:2:\"id\";i:2;s:4:\"name\";s:20:\"Essential Addons Pro\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/3e316eaec9b82a11ea232a3c14eb2c1ede603c12.svg\";s:6:\"is_pro\";b:1;s:8:\"platform\";s:9:\"elementor\";}i:2;a:5:{s:2:\"id\";i:3;s:4:\"name\";s:25:\"MailChimp for WooCommerce\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/cbd83f0669262af2ae585cabe6d07fed9b5bbfde.png\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"elementor\";}i:3;a:5:{s:2:\"id\";i:4;s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/5438b47171dac3ad05ab05205bacacba00345cb2.png\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"elementor\";}i:4;a:5:{s:2:\"id\";i:5;s:4:\"name\";s:9:\"LearnDash\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/440954005f4770644fc52f59fc4394a09df2da78.png\";s:6:\"is_pro\";b:1;s:8:\"platform\";s:9:\"elementor\";}i:5;a:5:{s:2:\"id\";i:6;s:4:\"name\";s:11:\"WooCommerce\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/3b0b1e592f17d22543e8e0c718dd78643b740b8f.png\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"elementor\";}i:6;a:5:{s:2:\"id\";i:7;s:4:\"name\";s:16:\"Essential Blocks\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/f2073f364698e264d4f420383e64e2c8940703c4.svg\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"gutenberg\";}i:7;a:5:{s:2:\"id\";i:8;s:4:\"name\";s:30:\"Essential Addons for Elementor\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/fb3d551daa7ffe3d4da76cf0df37dcd8b7835689.svg\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"elementor\";}i:8;a:5:{s:2:\"id\";i:9;s:4:\"name\";s:37:\"COVID19 – Coronavirus Outbreak Data\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/05193ab3f584af6592a55619edc479a61239e123.png\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"elementor\";}i:9;a:5:{s:2:\"id\";i:10;s:4:\"name\";s:11:\"Fluent Form\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/4828b777d98d70fb179cbea40582f9a0698b473a.png\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"elementor\";}i:10;a:5:{s:2:\"id\";i:11;s:4:\"name\";s:8:\"EasyJobs\";s:4:\"icon\";s:93:\"https://assets.templately.com/backend/dependency/93442f27a6275854a28f4a385216574a42a7afe8.png\";s:6:\"is_pro\";b:0;s:8:\"platform\";s:9:\"elementor\";}}','yes'),(3199,'_templately_tags','a:1192:{i:0;a:2:{s:2:\"id\";i:69;s:4:\"name\";s:12:\"professional\";}i:1;a:2:{s:2:\"id\";i:74;s:4:\"name\";s:8:\"services\";}i:2;a:2:{s:2:\"id\";i:75;s:4:\"name\";s:7:\"Project\";}i:3;a:2:{s:2:\"id\";i:76;s:4:\"name\";s:13:\"Communication\";}i:4;a:2:{s:2:\"id\";i:77;s:4:\"name\";s:6:\"Online\";}i:5;a:2:{s:2:\"id\";i:78;s:4:\"name\";s:18:\"Project Management\";}i:6;a:2:{s:2:\"id\";i:79;s:4:\"name\";s:20:\"Global Communication\";}i:7;a:2:{s:2:\"id\";i:80;s:4:\"name\";s:9:\"Customers\";}i:8;a:2:{s:2:\"id\";i:81;s:4:\"name\";s:10:\"experience\";}i:9;a:2:{s:2:\"id\";i:82;s:4:\"name\";s:8:\"feedback\";}i:10;a:2:{s:2:\"id\";i:83;s:4:\"name\";s:11:\"testimonial\";}i:11;a:2:{s:2:\"id\";i:84;s:4:\"name\";s:4:\"blog\";}i:12;a:2:{s:2:\"id\";i:85;s:4:\"name\";s:9:\"resources\";}i:13;a:2:{s:2:\"id\";i:86;s:4:\"name\";s:3:\"faq\";}i:14;a:2:{s:2:\"id\";i:87;s:4:\"name\";s:11:\"Consultancy\";}i:15;a:2:{s:2:\"id\";i:88;s:4:\"name\";s:9:\"Promotion\";}i:16;a:2:{s:2:\"id\";i:90;s:4:\"name\";s:10:\"newsletter\";}i:17;a:2:{s:2:\"id\";i:91;s:4:\"name\";s:4:\"name\";}i:18;a:2:{s:2:\"id\";i:92;s:4:\"name\";s:5:\"email\";}i:19;a:2:{s:2:\"id\";i:94;s:4:\"name\";s:10:\"templately\";}i:20;a:2:{s:2:\"id\";i:95;s:4:\"name\";s:16:\"SEO Consultation\";}i:21;a:2:{s:2:\"id\";i:96;s:4:\"name\";s:17:\"Product Promotion\";}i:22;a:2:{s:2:\"id\";i:97;s:4:\"name\";s:7:\"Meeting\";}i:23;a:2:{s:2:\"id\";i:98;s:4:\"name\";s:7:\"contact\";}i:24;a:2:{s:2:\"id\";i:99;s:4:\"name\";s:7:\"support\";}i:25;a:2:{s:2:\"id\";i:100;s:4:\"name\";s:6:\"Report\";}i:26;a:2:{s:2:\"id\";i:101;s:4:\"name\";s:11:\"Development\";}i:27;a:2:{s:2:\"id\";i:102;s:4:\"name\";s:4:\"hero\";}i:28;a:2:{s:2:\"id\";i:103;s:4:\"name\";s:6:\"banner\";}i:29;a:2:{s:2:\"id\";i:106;s:4:\"name\";s:4:\"lite\";}i:30;a:2:{s:2:\"id\";i:107;s:4:\"name\";s:6:\"header\";}i:31;a:2:{s:2:\"id\";i:108;s:4:\"name\";s:4:\"dark\";}i:32;a:2:{s:2:\"id\";i:121;s:4:\"name\";s:23:\"corona virus prevention\";}i:33;a:2:{s:2:\"id\";i:122;s:4:\"name\";s:11:\"coronavirus\";}i:34;a:2:{s:2:\"id\";i:123;s:4:\"name\";s:5:\"covid\";}i:35;a:2:{s:2:\"id\";i:125;s:4:\"name\";s:16:\"covid-19 advises\";}i:36;a:2:{s:2:\"id\";i:127;s:4:\"name\";s:7:\"doctors\";}i:37;a:2:{s:2:\"id\";i:128;s:4:\"name\";s:8:\"hospital\";}i:38;a:2:{s:2:\"id\";i:130;s:4:\"name\";s:15:\"medical advises\";}i:39;a:2:{s:2:\"id\";i:131;s:4:\"name\";s:9:\"ncov-2019\";}i:40;a:2:{s:2:\"id\";i:133;s:4:\"name\";s:14:\"corona landing\";}i:41;a:2:{s:2:\"id\";i:134;s:4:\"name\";s:15:\"corona symptoms\";}i:42;a:2:{s:2:\"id\";i:135;s:4:\"name\";s:15:\"corona template\";}i:43;a:2:{s:2:\"id\";i:137;s:4:\"name\";s:7:\"covid19\";}i:44;a:2:{s:2:\"id\";i:138;s:4:\"name\";s:10:\"healthcare\";}i:45;a:2:{s:2:\"id\";i:141;s:4:\"name\";s:17:\"covid page design\";}i:46;a:2:{s:2:\"id\";i:142;s:4:\"name\";s:20:\"covid ready template\";}i:47;a:2:{s:2:\"id\";i:143;s:4:\"name\";s:6:\"corona\";}i:48;a:2:{s:2:\"id\";i:148;s:4:\"name\";s:6:\"doctor\";}i:49;a:2:{s:2:\"id\";i:151;s:4:\"name\";s:18:\"healthcare service\";}i:50;a:2:{s:2:\"id\";i:152;s:4:\"name\";s:14:\"medical doctor\";}i:51;a:2:{s:2:\"id\";i:153;s:4:\"name\";s:15:\"medical website\";}i:52;a:2:{s:2:\"id\";i:154;s:4:\"name\";s:22:\"medical website design\";}i:53;a:2:{s:2:\"id\";i:155;s:4:\"name\";s:16:\"hospital website\";}i:54;a:2:{s:2:\"id\";i:159;s:4:\"name\";s:23:\"elementor for wordpress\";}i:55;a:2:{s:2:\"id\";i:166;s:4:\"name\";s:17:\"digital marketing\";}i:56;a:2:{s:2:\"id\";i:168;s:4:\"name\";s:11:\"advertising\";}i:57;a:2:{s:2:\"id\";i:169;s:4:\"name\";s:9:\"marketing\";}i:58;a:2:{s:2:\"id\";i:170;s:4:\"name\";s:12:\"agency theme\";}i:59;a:2:{s:2:\"id\";i:171;s:4:\"name\";s:15:\"agency template\";}i:60;a:2:{s:2:\"id\";i:173;s:4:\"name\";s:16:\"marketing agency\";}i:61;a:2:{s:2:\"id\";i:175;s:4:\"name\";s:24:\"marketing website design\";}i:62;a:2:{s:2:\"id\";i:176;s:4:\"name\";s:23:\"digital product website\";}i:63;a:2:{s:2:\"id\";i:178;s:4:\"name\";s:18:\"advertising agency\";}i:64;a:2:{s:2:\"id\";i:179;s:4:\"name\";s:19:\"advertising company\";}i:65;a:2:{s:2:\"id\";i:180;s:4:\"name\";s:16:\"agency portfolio\";}i:66;a:2:{s:2:\"id\";i:181;s:4:\"name\";s:7:\"careers\";}i:67;a:2:{s:2:\"id\";i:182;s:4:\"name\";s:15:\"creative studio\";}i:68;a:2:{s:2:\"id\";i:183;s:4:\"name\";s:7:\"digital\";}i:69;a:2:{s:2:\"id\";i:185;s:4:\"name\";s:14:\"digital studio\";}i:70;a:2:{s:2:\"id\";i:186;s:4:\"name\";s:10:\"technology\";}i:71;a:2:{s:2:\"id\";i:192;s:4:\"name\";s:12:\"crowdfunding\";}i:72;a:2:{s:2:\"id\";i:193;s:4:\"name\";s:11:\"fundraising\";}i:73;a:2:{s:2:\"id\";i:194;s:4:\"name\";s:10:\"fundraiser\";}i:74;a:2:{s:2:\"id\";i:195;s:4:\"name\";s:20:\"fundraising campaign\";}i:75;a:2:{s:2:\"id\";i:196;s:4:\"name\";s:15:\"ssential addons\";}i:76;a:2:{s:2:\"id\";i:197;s:4:\"name\";s:24:\"non-profit organizations\";}i:77;a:2:{s:2:\"id\";i:198;s:4:\"name\";s:10:\"non-profit\";}i:78;a:2:{s:2:\"id\";i:199;s:4:\"name\";s:9:\"donations\";}i:79;a:2:{s:2:\"id\";i:200;s:4:\"name\";s:7:\"charity\";}i:80;a:2:{s:2:\"id\";i:201;s:4:\"name\";s:3:\"ngo\";}i:81;a:2:{s:2:\"id\";i:202;s:4:\"name\";s:17:\"ngo organizations\";}i:82;a:2:{s:2:\"id\";i:203;s:4:\"name\";s:11:\"ngo website\";}i:83;a:2:{s:2:\"id\";i:204;s:4:\"name\";s:16:\"donation request\";}i:84;a:2:{s:2:\"id\";i:205;s:4:\"name\";s:16:\"donation website\";}i:85;a:2:{s:2:\"id\";i:206;s:4:\"name\";s:15:\"donation online\";}i:86;a:2:{s:2:\"id\";i:207;s:4:\"name\";s:14:\"donation drive\";}i:87;a:2:{s:2:\"id\";i:208;s:4:\"name\";s:21:\"charity organizations\";}i:88;a:2:{s:2:\"id\";i:209;s:4:\"name\";s:17:\"charity donations\";}i:89;a:2:{s:2:\"id\";i:210;s:4:\"name\";s:31:\".essential addons for elementor\";}i:90;a:2:{s:2:\"id\";i:214;s:4:\"name\";s:14:\"cryptocurrency\";}i:91;a:2:{s:2:\"id\";i:215;s:4:\"name\";s:6:\"crypto\";}i:92;a:2:{s:2:\"id\";i:216;s:4:\"name\";s:7:\"bitcoin\";}i:93;a:2:{s:2:\"id\";i:217;s:4:\"name\";s:10:\"blockchain\";}i:94;a:2:{s:2:\"id\";i:218;s:4:\"name\";s:16:\"bitcoin exchange\";}i:95;a:2:{s:2:\"id\";i:219;s:4:\"name\";s:15:\"crypto exchange\";}i:96;a:2:{s:2:\"id\";i:220;s:4:\"name\";s:21:\"cryptocurrency market\";}i:97;a:2:{s:2:\"id\";i:221;s:4:\"name\";s:22:\"cryptocurrency advisor\";}i:98;a:2:{s:2:\"id\";i:222;s:4:\"name\";s:25:\"cryptocurrency consultant\";}i:99;a:2:{s:2:\"id\";i:223;s:4:\"name\";s:25:\"cryptocurrency investment\";}i:100;a:2:{s:2:\"id\";i:224;s:4:\"name\";s:18:\"bitcoin investment\";}i:101;a:2:{s:2:\"id\";i:225;s:4:\"name\";s:15:\"crypto investor\";}i:102;a:2:{s:2:\"id\";i:226;s:4:\"name\";s:16:\"digital currency\";}i:103;a:2:{s:2:\"id\";i:229;s:4:\"name\";s:7:\"courier\";}i:104;a:2:{s:2:\"id\";i:240;s:4:\"name\";s:12:\"construction\";}i:105;a:2:{s:2:\"id\";i:241;s:4:\"name\";s:8:\"building\";}i:106;a:2:{s:2:\"id\";i:242;s:4:\"name\";s:12:\"architecture\";}i:107;a:2:{s:2:\"id\";i:243;s:4:\"name\";s:8:\"interior\";}i:108;a:2:{s:2:\"id\";i:244;s:4:\"name\";s:8:\"business\";}i:109;a:2:{s:2:\"id\";i:245;s:4:\"name\";s:15:\"home renovation\";}i:110;a:2:{s:2:\"id\";i:246;s:4:\"name\";s:17:\"office renovation\";}i:111;a:2:{s:2:\"id\";i:247;s:4:\"name\";s:19:\"interior decorating\";}i:112;a:2:{s:2:\"id\";i:248;s:4:\"name\";s:21:\"construction services\";}i:113;a:2:{s:2:\"id\";i:249;s:4:\"name\";s:20:\"construction workers\";}i:114;a:2:{s:2:\"id\";i:250;s:4:\"name\";s:20:\"construction website\";}i:115;a:2:{s:2:\"id\";i:251;s:4:\"name\";s:19:\"building businesses\";}i:116;a:2:{s:2:\"id\";i:252;s:4:\"name\";s:21:\"architecture services\";}i:117;a:2:{s:2:\"id\";i:253;s:4:\"name\";s:24:\"interior design services\";}i:118;a:2:{s:2:\"id\";i:254;s:4:\"name\";s:27:\"Header Section for Artesian\";}i:119;a:2:{s:2:\"id\";i:255;s:4:\"name\";s:27:\"Footer Section for Artesian\";}i:120;a:2:{s:2:\"id\";i:256;s:4:\"name\";s:5:\"model\";}i:121;a:2:{s:2:\"id\";i:258;s:4:\"name\";s:13:\"photographers\";}i:122;a:2:{s:2:\"id\";i:260;s:4:\"name\";s:19:\"photography website\";}i:123;a:2:{s:2:\"id\";i:261;s:4:\"name\";s:16:\"modelling agency\";}i:124;a:2:{s:2:\"id\";i:262;s:4:\"name\";s:14:\"fashion agency\";}i:125;a:2:{s:2:\"id\";i:263;s:4:\"name\";s:16:\"fashion branding\";}i:126;a:2:{s:2:\"id\";i:264;s:4:\"name\";s:11:\"photography\";}i:127;a:2:{s:2:\"id\";i:265;s:4:\"name\";s:13:\"acting agency\";}i:128;a:2:{s:2:\"id\";i:266;s:4:\"name\";s:14:\"casting agency\";}i:129;a:2:{s:2:\"id\";i:270;s:4:\"name\";s:24:\"modelling agency website\";}i:130;a:2:{s:2:\"id\";i:271;s:4:\"name\";s:15:\"fashion website\";}i:131;a:2:{s:2:\"id\";i:272;s:4:\"name\";s:21:\"acting agency website\";}i:132;a:2:{s:2:\"id\";i:273;s:4:\"name\";s:22:\"casting agency website\";}i:133;a:2:{s:2:\"id\";i:274;s:4:\"name\";s:14:\"travel booking\";}i:134;a:2:{s:2:\"id\";i:275;s:4:\"name\";s:6:\"travel\";}i:135;a:2:{s:2:\"id\";i:276;s:4:\"name\";s:7:\"tourism\";}i:136;a:2:{s:2:\"id\";i:277;s:4:\"name\";s:4:\"trip\";}i:137;a:2:{s:2:\"id\";i:278;s:4:\"name\";s:14:\"flight booking\";}i:138;a:2:{s:2:\"id\";i:279;s:4:\"name\";s:13:\"hotel booking\";}i:139;a:2:{s:2:\"id\";i:280;s:4:\"name\";s:13:\"trip planning\";}i:140;a:2:{s:2:\"id\";i:281;s:4:\"name\";s:13:\"travel agency\";}i:141;a:2:{s:2:\"id\";i:282;s:4:\"name\";s:21:\"travel service agency\";}i:142;a:2:{s:2:\"id\";i:283;s:4:\"name\";s:16:\"travel affiliate\";}i:143;a:2:{s:2:\"id\";i:286;s:4:\"name\";s:23:\"Footer with social icon\";}i:144;a:2:{s:2:\"id\";i:287;s:4:\"name\";s:15:\"ecommerce store\";}i:145;a:2:{s:2:\"id\";i:289;s:4:\"name\";s:7:\"apparel\";}i:146;a:2:{s:2:\"id\";i:294;s:4:\"name\";s:22:\"apparel shop templates\";}i:147;a:2:{s:2:\"id\";i:295;s:4:\"name\";s:23:\"clothing shop templates\";}i:148;a:2:{s:2:\"id\";i:297;s:4:\"name\";s:7:\"wedding\";}i:149;a:2:{s:2:\"id\";i:298;s:4:\"name\";s:15:\"wedding website\";}i:150;a:2:{s:2:\"id\";i:300;s:4:\"name\";s:5:\"event\";}i:151;a:2:{s:2:\"id\";i:301;s:4:\"name\";s:24:\"event management company\";}i:152;a:2:{s:2:\"id\";i:302;s:4:\"name\";s:16:\"wedding ceremony\";}i:153;a:2:{s:2:\"id\";i:303;s:4:\"name\";s:13:\"wedding party\";}i:154;a:2:{s:2:\"id\";i:304;s:4:\"name\";s:8:\"marriage\";}i:155;a:2:{s:2:\"id\";i:305;s:4:\"name\";s:14:\"couple website\";}i:156;a:2:{s:2:\"id\";i:306;s:4:\"name\";s:10:\"engagement\";}i:157;a:2:{s:2:\"id\";i:307;s:4:\"name\";s:24:\"wedding ceremony website\";}i:158;a:2:{s:2:\"id\";i:308;s:4:\"name\";s:16:\"marriage website\";}i:159;a:2:{s:2:\"id\";i:309;s:4:\"name\";s:24:\"engagement party website\";}i:160;a:2:{s:2:\"id\";i:315;s:4:\"name\";s:7:\"service\";}i:161;a:2:{s:2:\"id\";i:316;s:4:\"name\";s:12:\"landing page\";}i:162;a:2:{s:2:\"id\";i:317;s:4:\"name\";s:13:\"template pack\";}i:163;a:2:{s:2:\"id\";i:318;s:4:\"name\";s:9:\"gardening\";}i:164;a:2:{s:2:\"id\";i:319;s:4:\"name\";s:7:\"farming\";}i:165;a:2:{s:2:\"id\";i:320;s:4:\"name\";s:7:\"farmers\";}i:166;a:2:{s:2:\"id\";i:321;s:4:\"name\";s:9:\"gardeners\";}i:167;a:2:{s:2:\"id\";i:322;s:4:\"name\";s:8:\"vineyard\";}i:168;a:2:{s:2:\"id\";i:323;s:4:\"name\";s:8:\"florists\";}i:169;a:2:{s:2:\"id\";i:324;s:4:\"name\";s:14:\"groundskeeping\";}i:170;a:2:{s:2:\"id\";i:325;s:4:\"name\";s:9:\"landscape\";}i:171;a:2:{s:2:\"id\";i:326;s:4:\"name\";s:19:\"landscaping service\";}i:172;a:2:{s:2:\"id\";i:327;s:4:\"name\";s:20:\"agriculture services\";}i:173;a:2:{s:2:\"id\";i:328;s:4:\"name\";s:21:\"agriculture companies\";}i:174;a:2:{s:2:\"id\";i:329;s:4:\"name\";s:22:\"groundskeeping service\";}i:175;a:2:{s:2:\"id\";i:330;s:4:\"name\";s:19:\"agriculture website\";}i:176;a:2:{s:2:\"id\";i:331;s:4:\"name\";s:27:\"agriculture company website\";}i:177;a:2:{s:2:\"id\";i:332;s:4:\"name\";s:15:\"farming website\";}i:178;a:2:{s:2:\"id\";i:333;s:4:\"name\";s:17:\"gardening website\";}i:179;a:2:{s:2:\"id\";i:334;s:4:\"name\";s:30:\"groundskeeping service website\";}i:180;a:2:{s:2:\"id\";i:335;s:4:\"name\";s:25:\"landscape service website\";}i:181;a:2:{s:2:\"id\";i:337;s:4:\"name\";s:30:\"Elementor agriculture template\";}i:182;a:2:{s:2:\"id\";i:338;s:4:\"name\";s:26:\"Elementor farming template\";}i:183;a:2:{s:2:\"id\";i:340;s:4:\"name\";s:30:\"WordPress agriculture template\";}i:184;a:2:{s:2:\"id\";i:341;s:4:\"name\";s:26:\"WordPress farming template\";}i:185;a:2:{s:2:\"id\";i:342;s:4:\"name\";s:4:\"saas\";}i:186;a:2:{s:2:\"id\";i:343;s:4:\"name\";s:4:\"apps\";}i:187;a:2:{s:2:\"id\";i:344;s:4:\"name\";s:8:\"software\";}i:188;a:2:{s:2:\"id\";i:345;s:4:\"name\";s:4:\"tech\";}i:189;a:2:{s:2:\"id\";i:346;s:4:\"name\";s:13:\"landing pages\";}i:190;a:2:{s:2:\"id\";i:347;s:4:\"name\";s:16:\"software company\";}i:191;a:2:{s:2:\"id\";i:348;s:4:\"name\";s:12:\"tech company\";}i:192;a:2:{s:2:\"id\";i:349;s:4:\"name\";s:14:\"app developers\";}i:193;a:2:{s:2:\"id\";i:350;s:4:\"name\";s:15:\"software agency\";}i:194;a:2:{s:2:\"id\";i:351;s:4:\"name\";s:16:\"digital products\";}i:195;a:2:{s:2:\"id\";i:352;s:4:\"name\";s:13:\"tech products\";}i:196;a:2:{s:2:\"id\";i:353;s:4:\"name\";s:25:\"software company template\";}i:197;a:2:{s:2:\"id\";i:354;s:4:\"name\";s:24:\"software company website\";}i:198;a:2:{s:2:\"id\";i:355;s:4:\"name\";s:16:\"app landing page\";}i:199;a:2:{s:2:\"id\";i:356;s:4:\"name\";s:15:\"product website\";}i:200;a:2:{s:2:\"id\";i:357;s:4:\"name\";s:16:\"software website\";}i:201;a:2:{s:2:\"id\";i:358;s:4:\"name\";s:20:\"tech product website\";}i:202;a:2:{s:2:\"id\";i:359;s:4:\"name\";s:12:\"telemedicine\";}i:203;a:2:{s:2:\"id\";i:360;s:4:\"name\";s:20:\"digital medical care\";}i:204;a:2:{s:2:\"id\";i:361;s:4:\"name\";s:17:\"online healthcare\";}i:205;a:2:{s:2:\"id\";i:362;s:4:\"name\";s:19:\"online medical care\";}i:206;a:2:{s:2:\"id\";i:363;s:4:\"name\";s:25:\"online healthcare service\";}i:207;a:2:{s:2:\"id\";i:364;s:4:\"name\";s:21:\"medical professionals\";}i:208;a:2:{s:2:\"id\";i:366;s:4:\"name\";s:13:\"online clinic\";}i:209;a:2:{s:2:\"id\";i:367;s:4:\"name\";s:26:\"online healthcare template\";}i:210;a:2:{s:2:\"id\";i:368;s:4:\"name\";s:27:\"healthcare website template\";}i:211;a:2:{s:2:\"id\";i:369;s:4:\"name\";s:21:\"telemedicine template\";}i:212;a:2:{s:2:\"id\";i:370;s:4:\"name\";s:16:\"medical template\";}i:213;a:2:{s:2:\"id\";i:371;s:4:\"name\";s:27:\"healthcare service template\";}i:214;a:2:{s:2:\"id\";i:372;s:4:\"name\";s:30:\"medical professionals template\";}i:215;a:2:{s:2:\"id\";i:373;s:4:\"name\";s:29:\"telemedicine website template\";}i:216;a:2:{s:2:\"id\";i:374;s:4:\"name\";s:21:\"digital manufacturing\";}i:217;a:2:{s:2:\"id\";i:375;s:4:\"name\";s:23:\"digital services agency\";}i:218;a:2:{s:2:\"id\";i:376;s:4:\"name\";s:28:\"digital manufacturing agency\";}i:219;a:2:{s:2:\"id\";i:377;s:4:\"name\";s:30:\"digital manufacturing template\";}i:220;a:2:{s:2:\"id\";i:378;s:4:\"name\";s:29:\"digital manufacturing website\";}i:221;a:2:{s:2:\"id\";i:379;s:4:\"name\";s:23:\"digital agency template\";}i:222;a:2:{s:2:\"id\";i:380;s:4:\"name\";s:22:\"digital agency website\";}i:223;a:2:{s:2:\"id\";i:381;s:4:\"name\";s:10:\"smart home\";}i:224;a:2:{s:2:\"id\";i:382;s:4:\"name\";s:6:\"design\";}i:225;a:2:{s:2:\"id\";i:383;s:4:\"name\";s:19:\"smart home services\";}i:226;a:2:{s:2:\"id\";i:384;s:4:\"name\";s:21:\"smart home automation\";}i:227;a:2:{s:2:\"id\";i:385;s:4:\"name\";s:22:\"home security services\";}i:228;a:2:{s:2:\"id\";i:386;s:4:\"name\";s:27:\"video surveillance services\";}i:229;a:2:{s:2:\"id\";i:387;s:4:\"name\";s:15:\"interior design\";}i:230;a:2:{s:2:\"id\";i:388;s:4:\"name\";s:19:\"interior decorators\";}i:231;a:2:{s:2:\"id\";i:389;s:4:\"name\";s:10:\"architects\";}i:232;a:2:{s:2:\"id\";i:390;s:4:\"name\";s:10:\"green home\";}i:233;a:2:{s:2:\"id\";i:391;s:4:\"name\";s:30:\"green interior design services\";}i:234;a:2:{s:2:\"id\";i:392;s:4:\"name\";s:26:\"smart home service website\";}i:235;a:2:{s:2:\"id\";i:393;s:4:\"name\";s:29:\"home security service website\";}i:236;a:2:{s:2:\"id\";i:394;s:4:\"name\";s:27:\"smart home website template\";}i:237;a:2:{s:2:\"id\";i:395;s:4:\"name\";s:30:\"home security website template\";}i:238;a:2:{s:2:\"id\";i:396;s:4:\"name\";s:32:\"interior design website template\";}i:239;a:2:{s:2:\"id\";i:397;s:4:\"name\";s:7:\"startup\";}i:240;a:2:{s:2:\"id\";i:398;s:4:\"name\";s:32:\"artificial intelligence products\";}i:241;a:2:{s:2:\"id\";i:399;s:4:\"name\";s:21:\"technological devices\";}i:242;a:2:{s:2:\"id\";i:400;s:4:\"name\";s:11:\"electronics\";}i:243;a:2:{s:2:\"id\";i:401;s:4:\"name\";s:18:\"electronic devices\";}i:244;a:2:{s:2:\"id\";i:402;s:4:\"name\";s:21:\"tech product template\";}i:245;a:2:{s:2:\"id\";i:403;s:4:\"name\";s:20:\"electronics template\";}i:246;a:2:{s:2:\"id\";i:404;s:4:\"name\";s:26:\"electronic device template\";}i:247;a:2:{s:2:\"id\";i:405;s:4:\"name\";s:21:\"tech company template\";}i:248;a:2:{s:2:\"id\";i:406;s:4:\"name\";s:13:\"data analysis\";}i:249;a:2:{s:2:\"id\";i:407;s:4:\"name\";s:12:\"data science\";}i:250;a:2:{s:2:\"id\";i:408;s:4:\"name\";s:18:\"big data analytics\";}i:251;a:2:{s:2:\"id\";i:409;s:4:\"name\";s:23:\"artificial intelligence\";}i:252;a:2:{s:2:\"id\";i:410;s:4:\"name\";s:16:\"machine learning\";}i:253;a:2:{s:2:\"id\";i:411;s:4:\"name\";s:15:\"data management\";}i:254;a:2:{s:2:\"id\";i:412;s:4:\"name\";s:14:\"data migration\";}i:255;a:2:{s:2:\"id\";i:413;s:4:\"name\";s:16:\"digital agencies\";}i:256;a:2:{s:2:\"id\";i:414;s:4:\"name\";s:31:\"data analytics service template\";}i:257;a:2:{s:2:\"id\";i:415;s:4:\"name\";s:27:\"big data analytics template\";}i:258;a:2:{s:2:\"id\";i:416;s:4:\"name\";s:29:\"data science service template\";}i:259;a:2:{s:2:\"id\";i:418;s:4:\"name\";s:9:\"podcaster\";}i:260;a:2:{s:2:\"id\";i:419;s:4:\"name\";s:7:\"blogger\";}i:261;a:2:{s:2:\"id\";i:420;s:4:\"name\";s:12:\"videographer\";}i:262;a:2:{s:2:\"id\";i:422;s:4:\"name\";s:5:\"audio\";}i:263;a:2:{s:2:\"id\";i:423;s:4:\"name\";s:5:\"video\";}i:264;a:2:{s:2:\"id\";i:424;s:4:\"name\";s:15:\"video streaming\";}i:265;a:2:{s:2:\"id\";i:425;s:4:\"name\";s:15:\"podcast website\";}i:266;a:2:{s:2:\"id\";i:426;s:4:\"name\";s:25:\"musician website template\";}i:267;a:2:{s:2:\"id\";i:427;s:4:\"name\";s:10:\"podcasting\";}i:268;a:2:{s:2:\"id\";i:430;s:4:\"name\";s:29:\"Wordpress, WordPress template\";}i:269;a:2:{s:2:\"id\";i:431;s:4:\"name\";s:5:\"ebook\";}i:270;a:2:{s:2:\"id\";i:432;s:4:\"name\";s:10:\"audiobooks\";}i:271;a:2:{s:2:\"id\";i:433;s:4:\"name\";s:7:\"library\";}i:272;a:2:{s:2:\"id\";i:434;s:4:\"name\";s:9:\"book shop\";}i:273;a:2:{s:2:\"id\";i:435;s:4:\"name\";s:14:\"ebooks website\";}i:274;a:2:{s:2:\"id\";i:436;s:4:\"name\";s:18:\"audiobooks website\";}i:275;a:2:{s:2:\"id\";i:437;s:4:\"name\";s:14:\"online library\";}i:276;a:2:{s:2:\"id\";i:438;s:4:\"name\";s:15:\"library website\";}i:277;a:2:{s:2:\"id\";i:439;s:4:\"name\";s:17:\"online bookstores\";}i:278;a:2:{s:2:\"id\";i:440;s:4:\"name\";s:17:\"bookstore website\";}i:279;a:2:{s:2:\"id\";i:441;s:4:\"name\";s:21:\"reading cafe websites\";}i:280;a:2:{s:2:\"id\";i:443;s:4:\"name\";s:32:\"creative digital agency template\";}i:281;a:2:{s:2:\"id\";i:444;s:4:\"name\";s:16:\"online marketing\";}i:282;a:2:{s:2:\"id\";i:445;s:4:\"name\";s:24:\"online marketing company\";}i:283;a:2:{s:2:\"id\";i:446;s:4:\"name\";s:3:\"seo\";}i:284;a:2:{s:2:\"id\";i:448;s:4:\"name\";s:12:\"seo business\";}i:285;a:2:{s:2:\"id\";i:449;s:4:\"name\";s:19:\"social media agency\";}i:286;a:2:{s:2:\"id\";i:450;s:4:\"name\";s:11:\"seo company\";}i:287;a:2:{s:2:\"id\";i:451;s:4:\"name\";s:12:\"seo friendly\";}i:288;a:2:{s:2:\"id\";i:453;s:4:\"name\";s:9:\"seo theme\";}i:289;a:2:{s:2:\"id\";i:454;s:4:\"name\";s:13:\"seo wordpress\";}i:290;a:2:{s:2:\"id\";i:455;s:4:\"name\";s:12:\"social media\";}i:291;a:2:{s:2:\"id\";i:456;s:4:\"name\";s:10:\"web agency\";}i:292;a:2:{s:2:\"id\";i:457;s:4:\"name\";s:10:\"web design\";}i:293;a:2:{s:2:\"id\";i:458;s:4:\"name\";s:17:\"web design agency\";}i:294;a:2:{s:2:\"id\";i:459;s:4:\"name\";s:10:\"automobile\";}i:295;a:2:{s:2:\"id\";i:460;s:4:\"name\";s:8:\"car wash\";}i:296;a:2:{s:2:\"id\";i:461;s:4:\"name\";s:12:\"car cleaning\";}i:297;a:2:{s:2:\"id\";i:462;s:4:\"name\";s:10:\"car repair\";}i:298;a:2:{s:2:\"id\";i:463;s:4:\"name\";s:15:\"car maintenance\";}i:299;a:2:{s:2:\"id\";i:464;s:4:\"name\";s:25:\"car wash service template\";}i:300;a:2:{s:2:\"id\";i:465;s:4:\"name\";s:29:\"car cleaning service template\";}i:301;a:2:{s:2:\"id\";i:466;s:4:\"name\";s:27:\"car repair service template\";}i:302;a:2:{s:2:\"id\";i:467;s:4:\"name\";s:39:\"automobile maintenance service template\";}i:303;a:2:{s:2:\"id\";i:469;s:4:\"name\";s:10:\"web series\";}i:304;a:2:{s:2:\"id\";i:470;s:4:\"name\";s:19:\"web series template\";}i:305;a:2:{s:2:\"id\";i:471;s:4:\"name\";s:8:\"birthday\";}i:306;a:2:{s:2:\"id\";i:472;s:4:\"name\";s:11:\"anniversary\";}i:307;a:2:{s:2:\"id\";i:473;s:4:\"name\";s:13:\"event planner\";}i:308;a:2:{s:2:\"id\";i:474;s:4:\"name\";s:16:\"event management\";}i:309;a:2:{s:2:\"id\";i:475;s:4:\"name\";s:16:\"birthday planner\";}i:310;a:2:{s:2:\"id\";i:476;s:4:\"name\";s:15:\"wedding planner\";}i:311;a:2:{s:2:\"id\";i:477;s:4:\"name\";s:14:\"party services\";}i:312;a:2:{s:2:\"id\";i:478;s:4:\"name\";s:13:\"party planner\";}i:313;a:2:{s:2:\"id\";i:479;s:4:\"name\";s:22:\"event planning service\";}i:314;a:2:{s:2:\"id\";i:480;s:4:\"name\";s:24:\"event management service\";}i:315;a:2:{s:2:\"id\";i:481;s:4:\"name\";s:8:\"law firm\";}i:316;a:2:{s:2:\"id\";i:482;s:4:\"name\";s:13:\"legal advisor\";}i:317;a:2:{s:2:\"id\";i:483;s:4:\"name\";s:6:\"lawyer\";}i:318;a:2:{s:2:\"id\";i:484;s:4:\"name\";s:8:\"advocate\";}i:319;a:2:{s:2:\"id\";i:485;s:4:\"name\";s:8:\"attorney\";}i:320;a:2:{s:2:\"id\";i:486;s:4:\"name\";s:18:\"legal consultation\";}i:321;a:2:{s:2:\"id\";i:487;s:4:\"name\";s:22:\"legal consultancy firm\";}i:322;a:2:{s:2:\"id\";i:488;s:4:\"name\";s:25:\"legal consultancy website\";}i:323;a:2:{s:2:\"id\";i:489;s:4:\"name\";s:20:\"legal advice website\";}i:324;a:2:{s:2:\"id\";i:490;s:4:\"name\";s:7:\"justice\";}i:325;a:2:{s:2:\"id\";i:491;s:4:\"name\";s:16:\"law firm website\";}i:326;a:2:{s:2:\"id\";i:492;s:4:\"name\";s:21:\"egal consultancy firm\";}i:327;a:2:{s:2:\"id\";i:493;s:4:\"name\";s:9:\"furniture\";}i:328;a:2:{s:2:\"id\";i:494;s:4:\"name\";s:10:\"home decor\";}i:329;a:2:{s:2:\"id\";i:495;s:4:\"name\";s:14:\"furniture shop\";}i:330;a:2:{s:2:\"id\";i:496;s:4:\"name\";s:28:\"interior decorating services\";}i:331;a:2:{s:2:\"id\";i:497;s:4:\"name\";s:15:\"furniture store\";}i:332;a:2:{s:2:\"id\";i:498;s:4:\"name\";s:15:\"home decor shop\";}i:333;a:2:{s:2:\"id\";i:500;s:4:\"name\";s:10:\"freelancer\";}i:334;a:2:{s:2:\"id\";i:501;s:4:\"name\";s:17:\"freelance website\";}i:335;a:2:{s:2:\"id\";i:502;s:4:\"name\";s:9:\"portfolio\";}i:336;a:2:{s:2:\"id\";i:503;s:4:\"name\";s:16:\"online portfolio\";}i:337;a:2:{s:2:\"id\";i:504;s:4:\"name\";s:23:\"creative agency website\";}i:338;a:2:{s:2:\"id\";i:505;s:4:\"name\";s:12:\"photographer\";}i:339;a:2:{s:2:\"id\";i:506;s:4:\"name\";s:6:\"studio\";}i:340;a:2:{s:2:\"id\";i:507;s:4:\"name\";s:18:\"photography studio\";}i:341;a:2:{s:2:\"id\";i:508;s:4:\"name\";s:21:\"design studio website\";}i:342;a:2:{s:2:\"id\";i:509;s:4:\"name\";s:3:\"spa\";}i:343;a:2:{s:2:\"id\";i:510;s:4:\"name\";s:6:\"beauty\";}i:344;a:2:{s:2:\"id\";i:511;s:4:\"name\";s:12:\"beauty salon\";}i:345;a:2:{s:2:\"id\";i:512;s:4:\"name\";s:5:\"salon\";}i:346;a:2:{s:2:\"id\";i:513;s:4:\"name\";s:9:\"self-care\";}i:347;a:2:{s:2:\"id\";i:514;s:4:\"name\";s:8:\"wellness\";}i:348;a:2:{s:2:\"id\";i:515;s:4:\"name\";s:10:\"relaxation\";}i:349;a:2:{s:2:\"id\";i:516;s:4:\"name\";s:8:\"skincare\";}i:350;a:2:{s:2:\"id\";i:517;s:4:\"name\";s:11:\"Sweet Pixie\";}i:351;a:2:{s:2:\"id\";i:518;s:4:\"name\";s:9:\"lifestyle\";}i:352;a:2:{s:2:\"id\";i:519;s:4:\"name\";s:8:\"cosmetic\";}i:353;a:2:{s:2:\"id\";i:520;s:4:\"name\";s:7:\"massage\";}i:354;a:2:{s:2:\"id\";i:521;s:4:\"name\";s:11:\"beauty shop\";}i:355;a:2:{s:2:\"id\";i:522;s:4:\"name\";s:11:\"spa service\";}i:356;a:2:{s:2:\"id\";i:523;s:4:\"name\";s:11:\"spa booking\";}i:357;a:2:{s:2:\"id\";i:524;s:4:\"name\";s:15:\"wellness center\";}i:358;a:2:{s:2:\"id\";i:525;s:4:\"name\";s:20:\"spa website template\";}i:359;a:2:{s:2:\"id\";i:526;s:4:\"name\";s:22:\"salon website template\";}i:360;a:2:{s:2:\"id\";i:527;s:4:\"name\";s:14:\"beauty website\";}i:361;a:2:{s:2:\"id\";i:528;s:4:\"name\";s:19:\"spa service website\";}i:362;a:2:{s:2:\"id\";i:529;s:4:\"name\";s:16:\"cosmetic website\";}i:363;a:2:{s:2:\"id\";i:530;s:4:\"name\";s:16:\"skincare website\";}i:364;a:2:{s:2:\"id\";i:531;s:4:\"name\";s:34:\"cosmetic website, skincare website\";}i:365;a:2:{s:2:\"id\";i:532;s:4:\"name\";s:20:\"charity organization\";}i:366;a:2:{s:2:\"id\";i:533;s:4:\"name\";s:14:\"charity worker\";}i:367;a:2:{s:2:\"id\";i:534;s:4:\"name\";s:8:\"campaign\";}i:368;a:2:{s:2:\"id\";i:535;s:4:\"name\";s:9:\"freelance\";}i:369;a:2:{s:2:\"id\";i:537;s:4:\"name\";s:13:\"blog template\";}i:370;a:2:{s:2:\"id\";i:538;s:4:\"name\";s:16:\"blogger template\";}i:371;a:2:{s:2:\"id\";i:539;s:4:\"name\";s:26:\"portfolio website template\";}i:372;a:2:{s:2:\"id\";i:541;s:4:\"name\";s:20:\"photography template\";}i:373;a:2:{s:2:\"id\";i:542;s:4:\"name\";s:6:\"coffee\";}i:374;a:2:{s:2:\"id\";i:544;s:4:\"name\";s:12:\"coffee lover\";}i:375;a:2:{s:2:\"id\";i:546;s:4:\"name\";s:7:\"barista\";}i:376;a:2:{s:2:\"id\";i:547;s:4:\"name\";s:19:\"coffee shop website\";}i:377;a:2:{s:2:\"id\";i:549;s:4:\"name\";s:3:\"app\";}i:378;a:2:{s:2:\"id\";i:550;s:4:\"name\";s:27:\"creative portfolio template\";}i:379;a:2:{s:2:\"id\";i:551;s:4:\"name\";s:24:\"creative studio template\";}i:380;a:2:{s:2:\"id\";i:552;s:4:\"name\";s:24:\"creative agency template\";}i:381;a:2:{s:2:\"id\";i:553;s:4:\"name\";s:17:\"designer template\";}i:382;a:2:{s:2:\"id\";i:554;s:4:\"name\";s:25:\"product designer template\";}i:383;a:2:{s:2:\"id\";i:555;s:4:\"name\";s:4:\"yoga\";}i:384;a:2:{s:2:\"id\";i:556;s:4:\"name\";s:10:\"meditation\";}i:385;a:2:{s:2:\"id\";i:557;s:4:\"name\";s:7:\"fitness\";}i:386;a:2:{s:2:\"id\";i:558;s:4:\"name\";s:32:\"wellness center website template\";}i:387;a:2:{s:2:\"id\";i:559;s:4:\"name\";s:28:\"yoga center website template\";}i:388;a:2:{s:2:\"id\";i:560;s:4:\"name\";s:27:\"yoga class website template\";}i:389;a:2:{s:2:\"id\";i:561;s:4:\"name\";s:20:\"yoga trainer website\";}i:390;a:2:{s:2:\"id\";i:562;s:4:\"name\";s:34:\"meditation center website template\";}i:391;a:2:{s:2:\"id\";i:563;s:4:\"name\";s:25:\"relaxation center website\";}i:392;a:2:{s:2:\"id\";i:564;s:4:\"name\";s:19:\"health and wellness\";}i:393;a:2:{s:2:\"id\";i:566;s:4:\"name\";s:10:\"gift store\";}i:394;a:2:{s:2:\"id\";i:569;s:4:\"name\";s:12:\"product shop\";}i:395;a:2:{s:2:\"id\";i:572;s:4:\"name\";s:8:\"toy shop\";}i:396;a:2:{s:2:\"id\";i:576;s:4:\"name\";s:14:\"header section\";}i:397;a:2:{s:2:\"id\";i:577;s:4:\"name\";s:14:\"footer section\";}i:398;a:2:{s:2:\"id\";i:578;s:4:\"name\";s:15:\"header template\";}i:399;a:2:{s:2:\"id\";i:579;s:4:\"name\";s:15:\"footer template\";}i:400;a:2:{s:2:\"id\";i:580;s:4:\"name\";s:20:\"business consultancy\";}i:401;a:2:{s:2:\"id\";i:581;s:4:\"name\";s:16:\"business advisor\";}i:402;a:2:{s:2:\"id\";i:582;s:4:\"name\";s:9:\"corporate\";}i:403;a:2:{s:2:\"id\";i:583;s:4:\"name\";s:28:\"business consultancy website\";}i:404;a:2:{s:2:\"id\";i:584;s:4:\"name\";s:23:\"business advice website\";}i:405;a:2:{s:2:\"id\";i:585;s:4:\"name\";s:24:\"consultancy firm website\";}i:406;a:2:{s:2:\"id\";i:589;s:4:\"name\";s:21:\"product design agency\";}i:407;a:2:{s:2:\"id\";i:590;s:4:\"name\";s:22:\"digital studio website\";}i:408;a:2:{s:2:\"id\";i:591;s:4:\"name\";s:23:\"digital studio template\";}i:409;a:2:{s:2:\"id\";i:592;s:4:\"name\";s:6:\"career\";}i:410;a:2:{s:2:\"id\";i:593;s:4:\"name\";s:11:\"career page\";}i:411;a:2:{s:2:\"id\";i:594;s:4:\"name\";s:6:\"resume\";}i:412;a:2:{s:2:\"id\";i:595;s:4:\"name\";s:20:\"career page template\";}i:413;a:2:{s:2:\"id\";i:596;s:4:\"name\";s:20:\"career site template\";}i:414;a:2:{s:2:\"id\";i:597;s:4:\"name\";s:28:\"career landing page template\";}i:415;a:2:{s:2:\"id\";i:599;s:4:\"name\";s:5:\"hotel\";}i:416;a:2:{s:2:\"id\";i:601;s:4:\"name\";s:22:\"resort booking website\";}i:417;a:2:{s:2:\"id\";i:602;s:4:\"name\";s:6:\"resort\";}i:418;a:2:{s:2:\"id\";i:603;s:4:\"name\";s:18:\"restaurant booking\";}i:419;a:2:{s:2:\"id\";i:604;s:4:\"name\";s:21:\"hotel booking website\";}i:420;a:2:{s:2:\"id\";i:605;s:4:\"name\";s:14:\"travel website\";}i:421;a:2:{s:2:\"id\";i:606;s:4:\"name\";s:22:\"hotel website template\";}i:422;a:2:{s:2:\"id\";i:607;s:4:\"name\";s:14:\"resort website\";}i:423;a:2:{s:2:\"id\";i:608;s:4:\"name\";s:23:\"creative studio website\";}i:424;a:2:{s:2:\"id\";i:609;s:4:\"name\";s:20:\"beauty store website\";}i:425;a:2:{s:2:\"id\";i:611;s:4:\"name\";s:18:\"virtual conference\";}i:426;a:2:{s:2:\"id\";i:612;s:4:\"name\";s:10:\"conference\";}i:427;a:2:{s:2:\"id\";i:613;s:4:\"name\";s:10:\"exhibition\";}i:428;a:2:{s:2:\"id\";i:614;s:4:\"name\";s:27:\"virtual conference template\";}i:429;a:2:{s:2:\"id\";i:615;s:4:\"name\";s:26:\"virtual conference website\";}i:430;a:2:{s:2:\"id\";i:616;s:4:\"name\";s:22:\"event website template\";}i:431;a:2:{s:2:\"id\";i:617;s:4:\"name\";s:6:\"dental\";}i:432;a:2:{s:2:\"id\";i:618;s:4:\"name\";s:7:\"dentist\";}i:433;a:2:{s:2:\"id\";i:619;s:4:\"name\";s:8:\"medicine\";}i:434;a:2:{s:2:\"id\";i:620;s:4:\"name\";s:13:\"dental clinic\";}i:435;a:2:{s:2:\"id\";i:621;s:4:\"name\";s:9:\"dentistry\";}i:436;a:2:{s:2:\"id\";i:622;s:4:\"name\";s:11:\"dental care\";}i:437;a:2:{s:2:\"id\";i:623;s:4:\"name\";s:13:\"dental health\";}i:438;a:2:{s:2:\"id\";i:624;s:4:\"name\";s:21:\"dental clinic website\";}i:439;a:2:{s:2:\"id\";i:625;s:4:\"name\";s:15:\"dentist website\";}i:440;a:2:{s:2:\"id\";i:626;s:4:\"name\";s:24:\"medical website template\";}i:441;a:2:{s:2:\"id\";i:627;s:4:\"name\";s:15:\"dental practice\";}i:442;a:2:{s:2:\"id\";i:628;s:4:\"name\";s:12:\"medical care\";}i:443;a:2:{s:2:\"id\";i:629;s:4:\"name\";s:4:\"oral\";}i:444;a:2:{s:2:\"id\";i:630;s:4:\"name\";s:6:\"sports\";}i:445;a:2:{s:2:\"id\";i:631;s:4:\"name\";s:11:\"sports club\";}i:446;a:2:{s:2:\"id\";i:632;s:4:\"name\";s:3:\"gym\";}i:447;a:2:{s:2:\"id\";i:633;s:4:\"name\";s:6:\"health\";}i:448;a:2:{s:2:\"id\";i:634;s:4:\"name\";s:11:\"sports team\";}i:449;a:2:{s:2:\"id\";i:635;s:4:\"name\";s:14:\"sports academy\";}i:450;a:2:{s:2:\"id\";i:636;s:4:\"name\";s:8:\"athletes\";}i:451;a:2:{s:2:\"id\";i:637;s:4:\"name\";s:11:\"sports shop\";}i:452;a:2:{s:2:\"id\";i:638;s:4:\"name\";s:5:\"coach\";}i:453;a:2:{s:2:\"id\";i:639;s:4:\"name\";s:16:\"personal trainer\";}i:454;a:2:{s:2:\"id\";i:640;s:4:\"name\";s:8:\"football\";}i:455;a:2:{s:2:\"id\";i:641;s:4:\"name\";s:13:\"football club\";}i:456;a:2:{s:2:\"id\";i:642;s:4:\"name\";s:6:\"soccer\";}i:457;a:2:{s:2:\"id\";i:643;s:4:\"name\";s:11:\"soccer club\";}i:458;a:2:{s:2:\"id\";i:644;s:4:\"name\";s:19:\"sports club website\";}i:459;a:2:{s:2:\"id\";i:645;s:4:\"name\";s:15:\"fitness website\";}i:460;a:2:{s:2:\"id\";i:646;s:4:\"name\";s:22:\"sports academy website\";}i:461;a:2:{s:2:\"id\";i:647;s:4:\"name\";s:19:\"sports team website\";}i:462;a:2:{s:2:\"id\";i:649;s:4:\"name\";s:12:\"organic food\";}i:463;a:2:{s:2:\"id\";i:651;s:4:\"name\";s:21:\"organic store website\";}i:464;a:2:{s:2:\"id\";i:653;s:4:\"name\";s:16:\"organic business\";}i:465;a:2:{s:2:\"id\";i:654;s:4:\"name\";s:14:\"organic market\";}i:466;a:2:{s:2:\"id\";i:655;s:4:\"name\";s:15:\"vegetable store\";}i:467;a:2:{s:2:\"id\";i:659;s:4:\"name\";s:11:\"travel blog\";}i:468;a:2:{s:2:\"id\";i:660;s:4:\"name\";s:15:\"travel magazine\";}i:469;a:2:{s:2:\"id\";i:661;s:4:\"name\";s:13:\"personal blog\";}i:470;a:2:{s:2:\"id\";i:662;s:4:\"name\";s:14:\"travel blogger\";}i:471;a:2:{s:2:\"id\";i:663;s:4:\"name\";s:14:\"travel service\";}i:472;a:2:{s:2:\"id\";i:664;s:4:\"name\";s:9:\"adventure\";}i:473;a:2:{s:2:\"id\";i:665;s:4:\"name\";s:17:\"adventure website\";}i:474;a:2:{s:2:\"id\";i:666;s:4:\"name\";s:21:\"travel websitetourist\";}i:475;a:2:{s:2:\"id\";i:667;s:4:\"name\";s:15:\"tourism website\";}i:476;a:2:{s:2:\"id\";i:668;s:4:\"name\";s:4:\"tour\";}i:477;a:2:{s:2:\"id\";i:671;s:4:\"name\";s:7:\"tourist\";}i:478;a:2:{s:2:\"id\";i:672;s:4:\"name\";s:9:\"education\";}i:479;a:2:{s:2:\"id\";i:673;s:4:\"name\";s:8:\"learning\";}i:480;a:2:{s:2:\"id\";i:674;s:4:\"name\";s:16:\"online education\";}i:481;a:2:{s:2:\"id\";i:675;s:4:\"name\";s:17:\"education website\";}i:482;a:2:{s:2:\"id\";i:676;s:4:\"name\";s:8:\"training\";}i:483;a:2:{s:2:\"id\";i:677;s:4:\"name\";s:3:\"lms\";}i:484;a:2:{s:2:\"id\";i:678;s:4:\"name\";s:23:\"online learning website\";}i:485;a:2:{s:2:\"id\";i:679;s:4:\"name\";s:4:\"game\";}i:486;a:2:{s:2:\"id\";i:680;s:4:\"name\";s:6:\"gamers\";}i:487;a:2:{s:2:\"id\";i:681;s:4:\"name\";s:14:\"gaming website\";}i:488;a:2:{s:2:\"id\";i:682;s:4:\"name\";s:13:\"game reviewer\";}i:489;a:2:{s:2:\"id\";i:683;s:4:\"name\";s:13:\"gaming studio\";}i:490;a:2:{s:2:\"id\";i:684;s:4:\"name\";s:9:\"community\";}i:491;a:2:{s:2:\"id\";i:685;s:4:\"name\";s:16:\"gaming community\";}i:492;a:2:{s:2:\"id\";i:686;s:4:\"name\";s:15:\"game publishers\";}i:493;a:2:{s:2:\"id\";i:687;s:4:\"name\";s:15:\"gaming template\";}i:494;a:2:{s:2:\"id\";i:688;s:4:\"name\";s:30:\"gaming studio website template\";}i:495;a:2:{s:2:\"id\";i:689;s:4:\"name\";s:22:\"game publisher website\";}i:496;a:2:{s:2:\"id\";i:690;s:4:\"name\";s:22:\"game community website\";}i:497;a:2:{s:2:\"id\";i:693;s:4:\"name\";s:18:\"interior decorator\";}i:498;a:2:{s:2:\"id\";i:694;s:4:\"name\";s:25:\"interior designer website\";}i:499;a:2:{s:2:\"id\";i:695;s:4:\"name\";s:9:\"coworking\";}i:500;a:2:{s:2:\"id\";i:696;s:4:\"name\";s:15:\"coworking space\";}i:501;a:2:{s:2:\"id\";i:697;s:4:\"name\";s:12:\"office space\";}i:502;a:2:{s:2:\"id\";i:698;s:4:\"name\";s:11:\"real estate\";}i:503;a:2:{s:2:\"id\";i:699;s:4:\"name\";s:18:\"coworking template\";}i:504;a:2:{s:2:\"id\";i:700;s:4:\"name\";s:23:\"coworking space website\";}i:505;a:2:{s:2:\"id\";i:701;s:4:\"name\";s:29:\"office space website template\";}i:506;a:2:{s:2:\"id\";i:702;s:4:\"name\";s:17:\"content marketing\";}i:507;a:2:{s:2:\"id\";i:703;s:4:\"name\";s:25:\"digital marketing website\";}i:508;a:2:{s:2:\"id\";i:704;s:4:\"name\";s:24:\"marketing agency website\";}i:509;a:2:{s:2:\"id\";i:705;s:4:\"name\";s:24:\"content marketing agency\";}i:510;a:2:{s:2:\"id\";i:706;s:4:\"name\";s:26:\"content marketing template\";}i:511;a:2:{s:2:\"id\";i:707;s:4:\"name\";s:25:\"content marketing service\";}i:512;a:2:{s:2:\"id\";i:708;s:4:\"name\";s:6:\"barber\";}i:513;a:2:{s:2:\"id\";i:709;s:4:\"name\";s:11:\"barber shop\";}i:514;a:2:{s:2:\"id\";i:710;s:4:\"name\";s:13:\"salon website\";}i:515;a:2:{s:2:\"id\";i:711;s:4:\"name\";s:17:\"portfolio website\";}i:516;a:2:{s:2:\"id\";i:712;s:4:\"name\";s:9:\"hair care\";}i:517;a:2:{s:2:\"id\";i:713;s:4:\"name\";s:10:\"hair salon\";}i:518;a:2:{s:2:\"id\";i:714;s:4:\"name\";s:5:\"beard\";}i:519;a:2:{s:2:\"id\";i:715;s:4:\"name\";s:6:\"tattoo\";}i:520;a:2:{s:2:\"id\";i:716;s:4:\"name\";s:13:\"tattoo studio\";}i:521;a:2:{s:2:\"id\";i:717;s:4:\"name\";s:11:\"tattoo shop\";}i:522;a:2:{s:2:\"id\";i:718;s:4:\"name\";s:19:\"barber shop website\";}i:523;a:2:{s:2:\"id\";i:719;s:4:\"name\";s:28:\"barber shop website template\";}i:524;a:2:{s:2:\"id\";i:720;s:4:\"name\";s:18:\"hair salon website\";}i:525;a:2:{s:2:\"id\";i:721;s:4:\"name\";s:9:\"toy store\";}i:526;a:2:{s:2:\"id\";i:722;s:4:\"name\";s:14:\" kids clothing\";}i:527;a:2:{s:2:\"id\";i:723;s:4:\"name\";s:5:\" toys\";}i:528;a:2:{s:2:\"id\";i:725;s:4:\"name\";s:13:\" online store\";}i:529;a:2:{s:2:\"id\";i:726;s:4:\"name\";s:22:\" online clothing store\";}i:530;a:2:{s:2:\"id\";i:727;s:4:\"name\";s:18:\" online kids store\";}i:531;a:2:{s:2:\"id\";i:728;s:4:\"name\";s:17:\" online toy store\";}i:532;a:2:{s:2:\"id\";i:729;s:4:\"name\";s:18:\" toy store website\";}i:533;a:2:{s:2:\"id\";i:730;s:4:\"name\";s:27:\" toy store website template\";}i:534;a:2:{s:2:\"id\";i:731;s:4:\"name\";s:9:\" children\";}i:535;a:2:{s:2:\"id\";i:732;s:4:\"name\";s:5:\" kids\";}i:536;a:2:{s:2:\"id\";i:733;s:4:\"name\";s:15:\" children store\";}i:537;a:2:{s:2:\"id\";i:734;s:4:\"name\";s:13:\" kids fashion\";}i:538;a:2:{s:2:\"id\";i:735;s:4:\"name\";s:8:\" toddler\";}i:539;a:2:{s:2:\"id\";i:736;s:4:\"name\";s:24:\" kids toy store template\";}i:540;a:2:{s:2:\"id\";i:745;s:4:\"name\";s:13:\"food delivery\";}i:541;a:2:{s:2:\"id\";i:746;s:4:\"name\";s:15:\"courier service\";}i:542;a:2:{s:2:\"id\";i:747;s:4:\"name\";s:8:\"catering\";}i:543;a:2:{s:2:\"id\";i:748;s:4:\"name\";s:7:\"booking\";}i:544;a:2:{s:2:\"id\";i:749;s:4:\"name\";s:21:\"food delivery website\";}i:545;a:2:{s:2:\"id\";i:751;s:4:\"name\";s:30:\"food delivery website template\";}i:546;a:2:{s:2:\"id\";i:752;s:4:\"name\";s:24:\"courier service template\";}i:547;a:2:{s:2:\"id\";i:755;s:4:\"name\";s:8:\" flowers\";}i:548;a:2:{s:2:\"id\";i:756;s:4:\"name\";s:6:\" gifts\";}i:549;a:2:{s:2:\"id\";i:757;s:4:\"name\";s:13:\" flower store\";}i:550;a:2:{s:2:\"id\";i:758;s:4:\"name\";s:8:\" florist\";}i:551;a:2:{s:2:\"id\";i:759;s:4:\"name\";s:10:\" gift shop\";}i:552;a:2:{s:2:\"id\";i:760;s:4:\"name\";s:14:\" organic store\";}i:553;a:2:{s:2:\"id\";i:761;s:4:\"name\";s:12:\" agriculture\";}i:554;a:2:{s:2:\"id\";i:764;s:4:\"name\";s:12:\" online shop\";}i:555;a:2:{s:2:\"id\";i:765;s:4:\"name\";s:19:\" online flower shop\";}i:556;a:2:{s:2:\"id\";i:766;s:4:\"name\";s:25:\" florist website template\";}i:557;a:2:{s:2:\"id\";i:767;s:4:\"name\";s:20:\" flower shop website\";}i:558;a:2:{s:2:\"id\";i:771;s:4:\"name\";s:7:\"jewelry\";}i:559;a:2:{s:2:\"id\";i:772;s:4:\"name\";s:13:\" jewelry shop\";}i:560;a:2:{s:2:\"id\";i:773;s:4:\"name\";s:8:\" fashion\";}i:561;a:2:{s:2:\"id\";i:774;s:4:\"name\";s:12:\" accessories\";}i:562;a:2:{s:2:\"id\";i:775;s:4:\"name\";s:9:\" modeling\";}i:563;a:2:{s:2:\"id\";i:776;s:4:\"name\";s:20:\" online jewelry shop\";}i:564;a:2:{s:2:\"id\";i:777;s:4:\"name\";s:21:\" jewelry shop website\";}i:565;a:2:{s:2:\"id\";i:778;s:4:\"name\";s:22:\" jewelry shop template\";}i:566;a:2:{s:2:\"id\";i:779;s:4:\"name\";s:19:\" gift shop template\";}i:567;a:2:{s:2:\"id\";i:780;s:4:\"name\";s:17:\" jewelry designer\";}i:568;a:2:{s:2:\"id\";i:781;s:4:\"name\";s:17:\" fashion designer\";}i:569;a:2:{s:2:\"id\";i:785;s:4:\"name\";s:9:\"halloween\";}i:570;a:2:{s:2:\"id\";i:786;s:4:\"name\";s:16:\" halloween sales\";}i:571;a:2:{s:2:\"id\";i:787;s:4:\"name\";s:16:\" halloween party\";}i:572;a:2:{s:2:\"id\";i:788;s:4:\"name\";s:16:\" halloween event\";}i:573;a:2:{s:2:\"id\";i:789;s:4:\"name\";s:11:\" event page\";}i:574;a:2:{s:2:\"id\";i:790;s:4:\"name\";s:14:\" event website\";}i:575;a:2:{s:2:\"id\";i:791;s:4:\"name\";s:12:\" celebration\";}i:576;a:2:{s:2:\"id\";i:792;s:4:\"name\";s:30:\" halloween sales page template\";}i:577;a:2:{s:2:\"id\";i:793;s:4:\"name\";s:25:\" halloween party template\";}i:578;a:2:{s:2:\"id\";i:794;s:4:\"name\";s:25:\" halloween event template\";}i:579;a:2:{s:2:\"id\";i:795;s:4:\"name\";s:16:\" event organizer\";}i:580;a:2:{s:2:\"id\";i:796;s:4:\"name\";s:33:\" halloween event website template\";}i:581;a:2:{s:2:\"id\";i:797;s:4:\"name\";s:6:\"plants\";}i:582;a:2:{s:2:\"id\";i:798;s:4:\"name\";s:12:\" plant store\";}i:583;a:2:{s:2:\"id\";i:799;s:4:\"name\";s:8:\" nursery\";}i:584;a:2:{s:2:\"id\";i:800;s:4:\"name\";s:7:\" garden\";}i:585;a:2:{s:2:\"id\";i:801;s:4:\"name\";s:9:\" gardener\";}i:586;a:2:{s:2:\"id\";i:802;s:4:\"name\";s:12:\" flower shop\";}i:587;a:2:{s:2:\"id\";i:803;s:4:\"name\";s:18:\" online plant shop\";}i:588;a:2:{s:2:\"id\";i:804;s:4:\"name\";s:29:\" plant store website template\";}i:589;a:2:{s:2:\"id\";i:805;s:4:\"name\";s:19:\" plant shop website\";}i:590;a:2:{s:2:\"id\";i:806;s:4:\"name\";s:17:\" delivery service\";}i:591;a:2:{s:2:\"id\";i:807;s:4:\"name\";s:23:\" transportation company\";}i:592;a:2:{s:2:\"id\";i:808;s:4:\"name\";s:23:\" transportation service\";}i:593;a:2:{s:2:\"id\";i:809;s:4:\"name\";s:31:\" transportation company website\";}i:594;a:2:{s:2:\"id\";i:810;s:4:\"name\";s:25:\" delivery company website\";}i:595;a:2:{s:2:\"id\";i:811;s:4:\"name\";s:17:\" delivery company\";}i:596;a:2:{s:2:\"id\";i:812;s:4:\"name\";s:17:\" shipping company\";}i:597;a:2:{s:2:\"id\";i:813;s:4:\"name\";s:19:\" logistics solution\";}i:598;a:2:{s:2:\"id\";i:814;s:4:\"name\";s:15:\" transportation\";}i:599;a:2:{s:2:\"id\";i:815;s:4:\"name\";s:6:\" cargo\";}i:600;a:2:{s:2:\"id\";i:816;s:4:\"name\";s:24:\" courier service website\";}i:601;a:2:{s:2:\"id\";i:817;s:4:\"name\";s:25:\" delivery service website\";}i:602;a:2:{s:2:\"id\";i:818;s:4:\"name\";s:11:\" SEO agency\";}i:603;a:2:{s:2:\"id\";i:819;s:4:\"name\";s:14:\" SEO marketing\";}i:604;a:2:{s:2:\"id\";i:820;s:4:\"name\";s:21:\" SEO marketing agency\";}i:605;a:2:{s:2:\"id\";i:821;s:4:\"name\";s:16:\" creative agency\";}i:606;a:2:{s:2:\"id\";i:822;s:4:\"name\";s:15:\" digital agency\";}i:607;a:2:{s:2:\"id\";i:823;s:4:\"name\";s:24:\" agency website template\";}i:608;a:2:{s:2:\"id\";i:824;s:4:\"name\";s:25:\" digital marketing agency\";}i:609;a:2:{s:2:\"id\";i:825;s:4:\"name\";s:15:\" agency website\";}i:610;a:2:{s:2:\"id\";i:826;s:4:\"name\";s:28:\" SEO agency website template\";}i:611;a:2:{s:2:\"id\";i:827;s:4:\"name\";s:31:\" SEO marketing website template\";}i:612;a:2:{s:2:\"id\";i:829;s:4:\"name\";s:7:\"pricing\";}i:613;a:2:{s:2:\"id\";i:830;s:4:\"name\";s:13:\"pricing table\";}i:614;a:2:{s:2:\"id\";i:831;s:4:\"name\";s:23:\"elementor pricing table\";}i:615;a:2:{s:2:\"id\";i:832;s:4:\"name\";s:15:\"elementor block\";}i:616;a:2:{s:2:\"id\";i:833;s:4:\"name\";s:8:\"Features\";}i:617;a:2:{s:2:\"id\";i:834;s:4:\"name\";s:14:\"Features Block\";}i:618;a:2:{s:2:\"id\";i:835;s:4:\"name\";s:14:\"services block\";}i:619;a:2:{s:2:\"id\";i:836;s:4:\"name\";s:17:\" electronic store\";}i:620;a:2:{s:2:\"id\";i:837;s:4:\"name\";s:13:\" gaming store\";}i:621;a:2:{s:2:\"id\";i:838;s:4:\"name\";s:19:\" gaming accessories\";}i:622;a:2:{s:2:\"id\";i:840;s:4:\"name\";s:7:\" retail\";}i:623;a:2:{s:2:\"id\";i:841;s:4:\"name\";s:20:\" online retail store\";}i:624;a:2:{s:2:\"id\";i:842;s:4:\"name\";s:26:\" electronics store website\";}i:625;a:2:{s:2:\"id\";i:843;s:4:\"name\";s:27:\" electronics store template\";}i:626;a:2:{s:2:\"id\";i:844;s:4:\"name\";s:34:\" online electronics store template\";}i:627;a:2:{s:2:\"id\";i:847;s:4:\"name\";s:5:\"shoes\";}i:628;a:2:{s:2:\"id\";i:848;s:4:\"name\";s:11:\" shoe store\";}i:629;a:2:{s:2:\"id\";i:849;s:4:\"name\";s:14:\" jewelry store\";}i:630;a:2:{s:2:\"id\";i:850;s:4:\"name\";s:19:\" shoe store website\";}i:631;a:2:{s:2:\"id\";i:851;s:4:\"name\";s:20:\" shoe store template\";}i:632;a:2:{s:2:\"id\";i:852;s:4:\"name\";s:27:\" online shoe store template\";}i:633;a:2:{s:2:\"id\";i:854;s:4:\"name\";s:26:\" cyber monday landing page\";}i:634;a:2:{s:2:\"id\";i:856;s:4:\"name\";s:7:\" agency\";}i:635;a:2:{s:2:\"id\";i:857;s:4:\"name\";s:12:\" flash sales\";}i:636;a:2:{s:2:\"id\";i:858;s:4:\"name\";s:19:\" cyber monday sales\";}i:637;a:2:{s:2:\"id\";i:859;s:4:\"name\";s:30:\" cyber monday website template\";}i:638;a:2:{s:2:\"id\";i:861;s:4:\"name\";s:12:\"black friday\";}i:639;a:2:{s:2:\"id\";i:862;s:4:\"name\";s:26:\" black friday landing page\";}i:640;a:2:{s:2:\"id\";i:863;s:4:\"name\";s:19:\" black friday sales\";}i:641;a:2:{s:2:\"id\";i:864;s:4:\"name\";s:13:\" cyber monday\";}i:642;a:2:{s:2:\"id\";i:865;s:4:\"name\";s:30:\" black friday website template\";}i:643;a:2:{s:2:\"id\";i:867;s:4:\"name\";s:1:\"\n\";}i:644;a:2:{s:2:\"id\";i:868;s:4:\"name\";s:10:\"music band\";}i:645;a:2:{s:2:\"id\";i:869;s:4:\"name\";s:3:\" DJ\";}i:646;a:2:{s:2:\"id\";i:870;s:4:\"name\";s:9:\" creative\";}i:647;a:2:{s:2:\"id\";i:871;s:4:\"name\";s:7:\" artist\";}i:648;a:2:{s:2:\"id\";i:872;s:4:\"name\";s:8:\" podcast\";}i:649;a:2:{s:2:\"id\";i:873;s:4:\"name\";s:17:\" creative content\";}i:650;a:2:{s:2:\"id\";i:874;s:4:\"name\";s:19:\" music band website\";}i:651;a:2:{s:2:\"id\";i:875;s:4:\"name\";s:9:\" musician\";}i:652;a:2:{s:2:\"id\";i:876;s:4:\"name\";s:11:\" DJ website\";}i:653;a:2:{s:2:\"id\";i:877;s:4:\"name\";s:23:\" music website template\";}i:654;a:2:{s:2:\"id\";i:878;s:4:\"name\";s:20:\" music band template\";}i:655;a:2:{s:2:\"id\";i:879;s:4:\"name\";s:20:\" DJ website template\";}i:656;a:2:{s:2:\"id\";i:880;s:4:\"name\";s:11:\" responsive\";}i:657;a:2:{s:2:\"id\";i:883;s:4:\"name\";s:8:\"clothing\";}i:658;a:2:{s:2:\"id\";i:884;s:4:\"name\";s:15:\" clothing store\";}i:659;a:2:{s:2:\"id\";i:885;s:4:\"name\";s:13:\" beauty store\";}i:660;a:2:{s:2:\"id\";i:886;s:4:\"name\";s:32:\" clothing store website template\";}i:661;a:2:{s:2:\"id\";i:887;s:4:\"name\";s:31:\" online clothing store template\";}i:662;a:2:{s:2:\"id\";i:888;s:4:\"name\";s:24:\" clothing retail website\";}i:663;a:2:{s:2:\"id\";i:889;s:4:\"name\";s:25:\" fashion website template\";}i:664;a:2:{s:2:\"id\";i:890;s:4:\"name\";s:9:\"easy jobs\";}i:665;a:2:{s:2:\"id\";i:891;s:4:\"name\";s:2:\"cv\";}i:666;a:2:{s:2:\"id\";i:893;s:4:\"name\";s:7:\"coupons\";}i:667;a:2:{s:2:\"id\";i:894;s:4:\"name\";s:6:\" deals\";}i:668;a:2:{s:2:\"id\";i:895;s:4:\"name\";s:15:\" coupon website\";}i:669;a:2:{s:2:\"id\";i:896;s:4:\"name\";s:13:\" deal website\";}i:670;a:2:{s:2:\"id\";i:897;s:4:\"name\";s:10:\" affiliate\";}i:671;a:2:{s:2:\"id\";i:898;s:4:\"name\";s:20:\" affiliate marketing\";}i:672;a:2:{s:2:\"id\";i:899;s:4:\"name\";s:24:\" coupon website template\";}i:673;a:2:{s:2:\"id\";i:900;s:4:\"name\";s:28:\" coupon website landing page\";}i:674;a:2:{s:2:\"id\";i:901;s:4:\"name\";s:21:\" daily deals template\";}i:675;a:2:{s:2:\"id\";i:902;s:4:\"name\";s:29:\" daily deals website template\";}i:676;a:2:{s:2:\"id\";i:903;s:4:\"name\";s:25:\" coupon website wordpress\";}i:677;a:2:{s:2:\"id\";i:904;s:4:\"name\";s:20:\" wordpress templates\";}i:678;a:2:{s:2:\"id\";i:905;s:4:\"name\";s:20:\" elementor templates\";}i:679;a:2:{s:2:\"id\";i:906;s:4:\"name\";s:10:\" elementor\";}i:680;a:2:{s:2:\"id\";i:907;s:4:\"name\";s:6:\"bakery\";}i:681;a:2:{s:2:\"id\";i:908;s:4:\"name\";s:6:\" baker\";}i:682;a:2:{s:2:\"id\";i:909;s:4:\"name\";s:7:\" baking\";}i:683;a:2:{s:2:\"id\";i:910;s:4:\"name\";s:24:\" bakery website template\";}i:684;a:2:{s:2:\"id\";i:911;s:4:\"name\";s:11:\" restaurant\";}i:685;a:2:{s:2:\"id\";i:912;s:4:\"name\";s:19:\" restaurant website\";}i:686;a:2:{s:2:\"id\";i:913;s:4:\"name\";s:13:\" cafe website\";}i:687;a:2:{s:2:\"id\";i:914;s:4:\"name\";s:12:\" coffee shop\";}i:688;a:2:{s:2:\"id\";i:915;s:4:\"name\";s:5:\" cafe\";}i:689;a:2:{s:2:\"id\";i:916;s:4:\"name\";s:10:\" food blog\";}i:690;a:2:{s:2:\"id\";i:917;s:4:\"name\";s:14:\" online bakery\";}i:691;a:2:{s:2:\"id\";i:918;s:4:\"name\";s:10:\" cake shop\";}i:692;a:2:{s:2:\"id\";i:919;s:4:\"name\";s:12:\" pastry shop\";}i:693;a:2:{s:2:\"id\";i:920;s:4:\"name\";s:5:\" food\";}i:694;a:2:{s:2:\"id\";i:921;s:4:\"name\";s:13:\" cupcake shop\";}i:695;a:2:{s:2:\"id\";i:922;s:4:\"name\";s:6:\" bread\";}i:696;a:2:{s:2:\"id\";i:923;s:4:\"name\";s:12:\" bakery blog\";}i:697;a:2:{s:2:\"id\";i:924;s:4:\"name\";s:26:\" bakery template wordpress\";}i:698;a:2:{s:2:\"id\";i:925;s:4:\"name\";s:12:\" woocommerce\";}i:699;a:2:{s:2:\"id\";i:926;s:4:\"name\";s:21:\" woocommerce template\";}i:700;a:2:{s:2:\"id\";i:927;s:4:\"name\";s:26:\" bakery template elementor\";}i:701;a:2:{s:2:\"id\";i:928;s:4:\"name\";s:10:\" wordpress\";}i:702;a:2:{s:2:\"id\";i:929;s:4:\"name\";s:19:\" wordpress template\";}i:703;a:2:{s:2:\"id\";i:930;s:4:\"name\";s:29:\" woocommerce website template\";}i:704;a:2:{s:2:\"id\";i:931;s:4:\"name\";s:19:\" elementor template\";}i:705;a:2:{s:2:\"id\";i:932;s:4:\"name\";s:12:\"contact form\";}i:706;a:2:{s:2:\"id\";i:933;s:4:\"name\";s:12:\"contact page\";}i:707;a:2:{s:2:\"id\";i:934;s:4:\"name\";s:21:\"woocommerce templates\";}i:708;a:2:{s:2:\"id\";i:935;s:4:\"name\";s:11:\" e-commerce\";}i:709;a:2:{s:2:\"id\";i:936;s:4:\"name\";s:19:\"woocommerce landing\";}i:710;a:2:{s:2:\"id\";i:937;s:4:\"name\";s:17:\"ecommerce landing\";}i:711;a:2:{s:2:\"id\";i:938;s:4:\"name\";s:24:\"woocommerce product page\";}i:712;a:2:{s:2:\"id\";i:939;s:4:\"name\";s:9:\"cart page\";}i:713;a:2:{s:2:\"id\";i:940;s:4:\"name\";s:16:\"woocommerce cart\";}i:714;a:2:{s:2:\"id\";i:941;s:4:\"name\";s:8:\"checkout\";}i:715;a:2:{s:2:\"id\";i:942;s:4:\"name\";s:13:\"checkout page\";}i:716;a:2:{s:2:\"id\";i:943;s:4:\"name\";s:20:\"woocommerce checkout\";}i:717;a:2:{s:2:\"id\";i:944;s:4:\"name\";s:9:\"blog page\";}i:718;a:2:{s:2:\"id\";i:945;s:4:\"name\";s:14:\"ecommerce blog\";}i:719;a:2:{s:2:\"id\";i:946;s:4:\"name\";s:12:\"blog details\";}i:720;a:2:{s:2:\"id\";i:947;s:4:\"name\";s:16:\"blog single page\";}i:721;a:2:{s:2:\"id\";i:948;s:4:\"name\";s:20:\"single page template\";}i:722;a:2:{s:2:\"id\";i:949;s:4:\"name\";s:6:\"footer\";}i:723;a:2:{s:2:\"id\";i:950;s:4:\"name\";s:31:\"black friday template wordpress\";}i:724;a:2:{s:2:\"id\";i:951;s:4:\"name\";s:26:\"elementor podcast template\";}i:725;a:2:{s:2:\"id\";i:952;s:4:\"name\";s:26:\"wordpress podcast template\";}i:726;a:2:{s:2:\"id\";i:953;s:4:\"name\";s:17:\"agency about page\";}i:727;a:2:{s:2:\"id\";i:954;s:4:\"name\";s:21:\"agency about template\";}i:728;a:2:{s:2:\"id\";i:955;s:4:\"name\";s:15:\"marketing about\";}i:729;a:2:{s:2:\"id\";i:956;s:4:\"name\";s:9:\"wordpress\";}i:730;a:2:{s:2:\"id\";i:957;s:4:\"name\";s:18:\"wordpress template\";}i:731;a:2:{s:2:\"id\";i:958;s:4:\"name\";s:8:\"donation\";}i:732;a:2:{s:2:\"id\";i:959;s:4:\"name\";s:11:\"donate page\";}i:733;a:2:{s:2:\"id\";i:960;s:4:\"name\";s:20:\"donate page template\";}i:734;a:2:{s:2:\"id\";i:961;s:4:\"name\";s:8:\"about us\";}i:735;a:2:{s:2:\"id\";i:962;s:4:\"name\";s:10:\"about page\";}i:736;a:2:{s:2:\"id\";i:963;s:4:\"name\";s:7:\"journal\";}i:737;a:2:{s:2:\"id\";i:964;s:4:\"name\";s:21:\"journal page template\";}i:738;a:2:{s:2:\"id\";i:965;s:4:\"name\";s:9:\"elementor\";}i:739;a:2:{s:2:\"id\";i:966;s:4:\"name\";s:21:\"contact page template\";}i:740;a:2:{s:2:\"id\";i:967;s:4:\"name\";s:31:\"cyber monday template wordpress\";}i:741;a:2:{s:2:\"id\";i:968;s:4:\"name\";s:16:\"essential addons\";}i:742;a:2:{s:2:\"id\";i:969;s:4:\"name\";s:13:\"about us page\";}i:743;a:2:{s:2:\"id\";i:970;s:4:\"name\";s:22:\"about us page template\";}i:744;a:2:{s:2:\"id\";i:971;s:4:\"name\";s:18:\"elementor template\";}i:745;a:2:{s:2:\"id\";i:972;s:4:\"name\";s:18:\"portfolio template\";}i:746;a:2:{s:2:\"id\";i:973;s:4:\"name\";s:22:\"services page template\";}i:747;a:2:{s:2:\"id\";i:974;s:4:\"name\";s:21:\"services details page\";}i:748;a:2:{s:2:\"id\";i:975;s:4:\"name\";s:28:\"service single page template\";}i:749;a:2:{s:2:\"id\";i:976;s:4:\"name\";s:18:\"blog page template\";}i:750;a:2:{s:2:\"id\";i:977;s:4:\"name\";s:30:\"essential addons for elementor\";}i:751;a:2:{s:2:\"id\";i:978;s:4:\"name\";s:10:\"contact us\";}i:752;a:2:{s:2:\"id\";i:979;s:4:\"name\";s:15:\"contact us page\";}i:753;a:2:{s:2:\"id\";i:980;s:4:\"name\";s:14:\"online courses\";}i:754;a:2:{s:2:\"id\";i:981;s:4:\"name\";s:7:\"courses\";}i:755;a:2:{s:2:\"id\";i:982;s:4:\"name\";s:15:\"course template\";}i:756;a:2:{s:2:\"id\";i:983;s:4:\"name\";s:13:\"course single\";}i:757;a:2:{s:2:\"id\";i:984;s:4:\"name\";s:14:\"event template\";}i:758;a:2:{s:2:\"id\";i:985;s:4:\"name\";s:19:\"journal single page\";}i:759;a:2:{s:2:\"id\";i:986;s:4:\"name\";s:24:\"contact us page template\";}i:760;a:2:{s:2:\"id\";i:987;s:4:\"name\";s:8:\"trustaid\";}i:761;a:2:{s:2:\"id\";i:988;s:4:\"name\";s:17:\"trustaid template\";}i:762;a:2:{s:2:\"id\";i:989;s:4:\"name\";s:7:\"gallery\";}i:763;a:2:{s:2:\"id\";i:990;s:4:\"name\";s:21:\"gallery page template\";}i:764;a:2:{s:2:\"id\";i:991;s:4:\"name\";s:4:\"news\";}i:765;a:2:{s:2:\"id\";i:992;s:4:\"name\";s:16:\"news single page\";}i:766;a:2:{s:2:\"id\";i:993;s:4:\"name\";s:23:\"blog single single page\";}i:767;a:2:{s:2:\"id\";i:994;s:4:\"name\";s:28:\"header section for trustaid.\";}i:768;a:2:{s:2:\"id\";i:995;s:4:\"name\";s:36:\"header for trustaid charity template\";}i:769;a:2:{s:2:\"id\";i:996;s:4:\"name\";s:19:\"footer for trustaid\";}i:770;a:2:{s:2:\"id\";i:997;s:4:\"name\";s:29:\"wordpress e-commerce template\";}i:771;a:2:{s:2:\"id\";i:998;s:4:\"name\";s:29:\"elementor e-commerce template\";}i:772;a:2:{s:2:\"id\";i:999;s:4:\"name\";s:18:\" woocommerce store\";}i:773;a:2:{s:2:\"id\";i:1000;s:4:\"name\";s:20:\" woocommerce website\";}i:774;a:2:{s:2:\"id\";i:1001;s:4:\"name\";s:4:\"cart\";}i:775;a:2:{s:2:\"id\";i:1002;s:4:\"name\";s:16:\"covid19 template\";}i:776;a:2:{s:2:\"id\";i:1003;s:4:\"name\";s:7:\"medical\";}i:777;a:2:{s:2:\"id\";i:1004;s:4:\"name\";s:19:\"coronavirus disease\";}i:778;a:2:{s:2:\"id\";i:1005;s:4:\"name\";s:26:\"elehealth medical template\";}i:779;a:2:{s:2:\"id\";i:1006;s:4:\"name\";s:6:\"clinic\";}i:780;a:2:{s:2:\"id\";i:1007;s:4:\"name\";s:9:\"elehealth\";}i:781;a:2:{s:2:\"id\";i:1008;s:4:\"name\";s:11:\"appointment\";}i:782;a:2:{s:2:\"id\";i:1009;s:4:\"name\";s:16:\"appointment page\";}i:783;a:2:{s:2:\"id\";i:1010;s:4:\"name\";s:11:\"specialties\";}i:784;a:2:{s:2:\"id\";i:1011;s:4:\"name\";s:16:\"specialties page\";}i:785;a:2:{s:2:\"id\";i:1012;s:4:\"name\";s:12:\"doctors list\";}i:786;a:2:{s:2:\"id\";i:1013;s:4:\"name\";s:14:\"food menu page\";}i:787;a:2:{s:2:\"id\";i:1014;s:4:\"name\";s:22:\"hotel reservation page\";}i:788;a:2:{s:2:\"id\";i:1015;s:4:\"name\";s:16:\"reservation page\";}i:789;a:2:{s:2:\"id\";i:1016;s:4:\"name\";s:21:\"service page template\";}i:790;a:2:{s:2:\"id\";i:1017;s:4:\"name\";s:26:\"elementor website template\";}i:791;a:2:{s:2:\"id\";i:1018;s:4:\"name\";s:27:\" wordpress website template\";}i:792;a:2:{s:2:\"id\";i:1019;s:4:\"name\";s:8:\"personal\";}i:793;a:2:{s:2:\"id\";i:1020;s:4:\"name\";s:25:\"blog single page template\";}i:794;a:2:{s:2:\"id\";i:1021;s:4:\"name\";s:23:\"portfolio page template\";}i:795;a:2:{s:2:\"id\";i:1022;s:4:\"name\";s:21:\"pricing page template\";}i:796;a:2:{s:2:\"id\";i:1023;s:4:\"name\";s:9:\"shop page\";}i:797;a:2:{s:2:\"id\";i:1024;s:4:\"name\";s:12:\"product page\";}i:798;a:2:{s:2:\"id\";i:1025;s:4:\"name\";s:13:\" black friday\";}i:799;a:2:{s:2:\"id\";i:1026;s:4:\"name\";s:18:\" ecommerce website\";}i:800;a:2:{s:2:\"id\";i:1027;s:4:\"name\";s:10:\" ecommerce\";}i:801;a:2:{s:2:\"id\";i:1028;s:4:\"name\";s:18:\"cart page template\";}i:802;a:2:{s:2:\"id\";i:1029;s:4:\"name\";s:22:\"checkout page template\";}i:803;a:2:{s:2:\"id\";i:1030;s:4:\"name\";s:11:\"single post\";}i:804;a:2:{s:2:\"id\";i:1031;s:4:\"name\";s:10:\"login form\";}i:805;a:2:{s:2:\"id\";i:1032;s:4:\"name\";s:10:\"login page\";}i:806;a:2:{s:2:\"id\";i:1033;s:4:\"name\";s:19:\"login page template\";}i:807;a:2:{s:2:\"id\";i:1034;s:4:\"name\";s:20:\"product details page\";}i:808;a:2:{s:2:\"id\";i:1035;s:4:\"name\";s:19:\"single product page\";}i:809;a:2:{s:2:\"id\";i:1036;s:4:\"name\";s:17:\"blog details page\";}i:810;a:2:{s:2:\"id\";i:1037;s:4:\"name\";s:19:\"about page template\";}i:811;a:2:{s:2:\"id\";i:1038;s:4:\"name\";s:26:\"blog details page template\";}i:812;a:2:{s:2:\"id\";i:1039;s:4:\"name\";s:17:\"faq page template\";}i:813;a:2:{s:2:\"id\";i:1040;s:4:\"name\";s:21:\"pricing table section\";}i:814;a:2:{s:2:\"id\";i:1041;s:4:\"name\";s:11:\"faq section\";}i:815;a:2:{s:2:\"id\";i:1042;s:4:\"name\";s:20:\"contact form section\";}i:816;a:2:{s:2:\"id\";i:1043;s:4:\"name\";s:19:\" ecommerce template\";}i:817;a:2:{s:2:\"id\";i:1044;s:4:\"name\";s:24:\" wordpress template pack\";}i:818;a:2:{s:2:\"id\";i:1045;s:4:\"name\";s:18:\"shop page template\";}i:819;a:2:{s:2:\"id\";i:1046;s:4:\"name\";s:21:\"product page template\";}i:820;a:2:{s:2:\"id\";i:1047;s:4:\"name\";s:18:\" wordpress website\";}i:821;a:2:{s:2:\"id\";i:1048;s:4:\"name\";s:24:\" elementor template pack\";}i:822;a:2:{s:2:\"id\";i:1049;s:4:\"name\";s:28:\" e-commerce website template\";}i:823;a:2:{s:2:\"id\";i:1050;s:4:\"name\";s:4:\"shop\";}i:824;a:2:{s:2:\"id\";i:1051;s:4:\"name\";s:8:\"products\";}i:825;a:2:{s:2:\"id\";i:1052;s:4:\"name\";s:14:\"single product\";}i:826;a:2:{s:2:\"id\";i:1053;s:4:\"name\";s:15:\"product details\";}i:827;a:2:{s:2:\"id\";i:1054;s:4:\"name\";s:13:\"schedule page\";}i:828;a:2:{s:2:\"id\";i:1055;s:4:\"name\";s:11:\"barber page\";}i:829;a:2:{s:2:\"id\";i:1056;s:4:\"name\";s:26:\"organic ecommerce business\";}i:830;a:2:{s:2:\"id\";i:1057;s:4:\"name\";s:5:\"about\";}i:831;a:2:{s:2:\"id\";i:1058;s:4:\"name\";s:7:\"sign in\";}i:832;a:2:{s:2:\"id\";i:1059;s:4:\"name\";s:6:\"log in\";}i:833;a:2:{s:2:\"id\";i:1060;s:4:\"name\";s:14:\"digital agency\";}i:834;a:2:{s:2:\"id\";i:1061;s:4:\"name\";s:23:\"agency website template\";}i:835;a:2:{s:2:\"id\";i:1062;s:4:\"name\";s:6:\"agency\";}i:836;a:2:{s:2:\"id\";i:1063;s:4:\"name\";s:8:\"speakers\";}i:837;a:2:{s:2:\"id\";i:1064;s:4:\"name\";s:8:\"creative\";}i:838;a:2:{s:2:\"id\";i:1065;s:4:\"name\";s:8:\"musician\";}i:839;a:2:{s:2:\"id\";i:1066;s:4:\"name\";s:8:\"projects\";}i:840;a:2:{s:2:\"id\";i:1067;s:4:\"name\";s:20:\"project details page\";}i:841;a:2:{s:2:\"id\";i:1068;s:4:\"name\";s:12:\"cafe website\";}i:842;a:2:{s:2:\"id\";i:1069;s:4:\"name\";s:11:\"coffee shop\";}i:843;a:2:{s:2:\"id\";i:1070;s:4:\"name\";s:4:\"cafe\";}i:844;a:2:{s:2:\"id\";i:1071;s:4:\"name\";s:11:\"woocommerce\";}i:845;a:2:{s:2:\"id\";i:1072;s:4:\"name\";s:17:\"woocommerce store\";}i:846;a:2:{s:2:\"id\";i:1073;s:4:\"name\";s:4:\"team\";}i:847;a:2:{s:2:\"id\";i:1074;s:4:\"name\";s:11:\"team member\";}i:848;a:2:{s:2:\"id\";i:1075;s:4:\"name\";s:9:\"news page\";}i:849;a:2:{s:2:\"id\";i:1076;s:4:\"name\";s:10:\"responsive\";}i:850;a:2:{s:2:\"id\";i:1077;s:4:\"name\";s:26:\"elementor wedding template\";}i:851;a:2:{s:2:\"id\";i:1078;s:4:\"name\";s:26:\"wordpress wedding template\";}i:852;a:2:{s:2:\"id\";i:1079;s:4:\"name\";s:13:\"event website\";}i:853;a:2:{s:2:\"id\";i:1080;s:4:\"name\";s:18:\"eleshoply template\";}i:854;a:2:{s:2:\"id\";i:1081;s:4:\"name\";s:12:\"online store\";}i:855;a:2:{s:2:\"id\";i:1082;s:4:\"name\";s:7:\"fashion\";}i:856;a:2:{s:2:\"id\";i:1083;s:4:\"name\";s:14:\"clothing store\";}i:857;a:2:{s:2:\"id\";i:1084;s:4:\"name\";s:10:\"my account\";}i:858;a:2:{s:2:\"id\";i:1085;s:4:\"name\";s:7:\"profile\";}i:859;a:2:{s:2:\"id\";i:1086;s:4:\"name\";s:16:\"delivery service\";}i:860;a:2:{s:2:\"id\";i:1087;s:4:\"name\";s:22:\"transportation company\";}i:861;a:2:{s:2:\"id\";i:1088;s:4:\"name\";s:22:\"transportation service\";}i:862;a:2:{s:2:\"id\";i:1089;s:4:\"name\";s:30:\"transportation company website\";}i:863;a:2:{s:2:\"id\";i:1090;s:4:\"name\";s:24:\"delivery company website\";}i:864;a:2:{s:2:\"id\";i:1091;s:4:\"name\";s:16:\"delivery company\";}i:865;a:2:{s:2:\"id\";i:1092;s:4:\"name\";s:16:\"shipping company\";}i:866;a:2:{s:2:\"id\";i:1093;s:4:\"name\";s:18:\"logistics solution\";}i:867;a:2:{s:2:\"id\";i:1094;s:4:\"name\";s:14:\"transportation\";}i:868;a:2:{s:2:\"id\";i:1095;s:4:\"name\";s:5:\"cargo\";}i:869;a:2:{s:2:\"id\";i:1096;s:4:\"name\";s:8:\"magazine\";}i:870;a:2:{s:2:\"id\";i:1097;s:4:\"name\";s:17:\"elementor website\";}i:871;a:2:{s:2:\"id\";i:1098;s:4:\"name\";s:17:\"wordpress website\";}i:872;a:2:{s:2:\"id\";i:1099;s:4:\"name\";s:15:\"creative agency\";}i:873;a:2:{s:2:\"id\";i:1100;s:4:\"name\";s:24:\"digital marketing agency\";}i:874;a:2:{s:2:\"id\";i:1101;s:4:\"name\";s:14:\"digency header\";}i:875;a:2:{s:2:\"id\";i:1102;s:4:\"name\";s:14:\"digency footer\";}i:876;a:2:{s:2:\"id\";i:1103;s:4:\"name\";s:10:\"restaurant\";}i:877;a:2:{s:2:\"id\";i:1104;s:4:\"name\";s:6:\"hotels\";}i:878;a:2:{s:2:\"id\";i:1105;s:4:\"name\";s:5:\"deals\";}i:879;a:2:{s:2:\"id\";i:1106;s:4:\"name\";s:8:\"new year\";}i:880;a:2:{s:2:\"id\";i:1107;s:4:\"name\";s:16:\"new year landing\";}i:881;a:2:{s:2:\"id\";i:1108;s:4:\"name\";s:10:\"singlepage\";}i:882;a:2:{s:2:\"id\";i:1109;s:4:\"name\";s:6:\"makeup\";}i:883;a:2:{s:2:\"id\";i:1110;s:4:\"name\";s:13:\"makeup artist\";}i:884;a:2:{s:2:\"id\";i:1111;s:4:\"name\";s:9:\"cosmetics\";}i:885;a:2:{s:2:\"id\";i:1112;s:4:\"name\";s:30:\"makeup artist website template\";}i:886;a:2:{s:2:\"id\";i:1113;s:4:\"name\";s:21:\"makeup artist website\";}i:887;a:2:{s:2:\"id\";i:1114;s:4:\"name\";s:28:\"makeup artist studio website\";}i:888;a:2:{s:2:\"id\";i:1115;s:4:\"name\";s:21:\"makeup studio website\";}i:889;a:2:{s:2:\"id\";i:1116;s:4:\"name\";s:19:\"wordpress templates\";}i:890;a:2:{s:2:\"id\";i:1117;s:4:\"name\";s:19:\"elementor templates\";}i:891;a:2:{s:2:\"id\";i:1118;s:4:\"name\";s:13:\"organic store\";}i:892;a:2:{s:2:\"id\";i:1119;s:4:\"name\";s:5:\"baker\";}i:893;a:2:{s:2:\"id\";i:1120;s:4:\"name\";s:6:\"baking\";}i:894;a:2:{s:2:\"id\";i:1121;s:4:\"name\";s:23:\"bakery website template\";}i:895;a:2:{s:2:\"id\";i:1122;s:4:\"name\";s:18:\"restaurant website\";}i:896;a:2:{s:2:\"id\";i:1123;s:4:\"name\";s:9:\"food blog\";}i:897;a:2:{s:2:\"id\";i:1124;s:4:\"name\";s:13:\"online bakery\";}i:898;a:2:{s:2:\"id\";i:1125;s:4:\"name\";s:9:\"cake shop\";}i:899;a:2:{s:2:\"id\";i:1126;s:4:\"name\";s:11:\"pastry shop\";}i:900;a:2:{s:2:\"id\";i:1127;s:4:\"name\";s:4:\"food\";}i:901;a:2:{s:2:\"id\";i:1128;s:4:\"name\";s:12:\"cupcake shop\";}i:902;a:2:{s:2:\"id\";i:1129;s:4:\"name\";s:5:\"bread\";}i:903;a:2:{s:2:\"id\";i:1130;s:4:\"name\";s:11:\"bakery blog\";}i:904;a:2:{s:2:\"id\";i:1131;s:4:\"name\";s:25:\"bakery template wordpress\";}i:905;a:2:{s:2:\"id\";i:1132;s:4:\"name\";s:20:\"woocommerce template\";}i:906;a:2:{s:2:\"id\";i:1133;s:4:\"name\";s:25:\"bakery template elementor\";}i:907;a:2:{s:2:\"id\";i:1134;s:4:\"name\";s:11:\"reservation\";}i:908;a:2:{s:2:\"id\";i:1135;s:4:\"name\";s:11:\"online shop\";}i:909;a:2:{s:2:\"id\";i:1136;s:4:\"name\";s:11:\"flash sales\";}i:910;a:2:{s:2:\"id\";i:1137;s:4:\"name\";s:25:\"black friday landing page\";}i:911;a:2:{s:2:\"id\";i:1138;s:4:\"name\";s:18:\"black friday sales\";}i:912;a:2:{s:2:\"id\";i:1139;s:4:\"name\";s:12:\"cyber monday\";}i:913;a:2:{s:2:\"id\";i:1140;s:4:\"name\";s:29:\"black friday website template\";}i:914;a:2:{s:2:\"id\";i:1141;s:4:\"name\";s:0:\"\";}i:915;a:2:{s:2:\"id\";i:1142;s:4:\"name\";s:14:\"agency website\";}i:916;a:2:{s:2:\"id\";i:1143;s:4:\"name\";s:20:\"corona virus disease\";}i:917;a:2:{s:2:\"id\";i:1144;s:4:\"name\";s:17:\"covid-19 template\";}i:918;a:2:{s:2:\"id\";i:1145;s:4:\"name\";s:16:\"covid prevention\";}i:919;a:2:{s:2:\"id\";i:1146;s:4:\"name\";s:15:\"covid elementor\";}i:920;a:2:{s:2:\"id\";i:1147;s:4:\"name\";s:20:\"covid awareness page\";}i:921;a:2:{s:2:\"id\";i:1148;s:4:\"name\";s:8:\"covid-19\";}i:922;a:2:{s:2:\"id\";i:1149;s:4:\"name\";s:12:\"corona virus\";}i:923;a:2:{s:2:\"id\";i:1150;s:4:\"name\";s:9:\"christmas\";}i:924;a:2:{s:2:\"id\";i:1151;s:4:\"name\";s:17:\"christmas landing\";}i:925;a:2:{s:2:\"id\";i:1152;s:4:\"name\";s:20:\"cyber monday landing\";}i:926;a:2:{s:2:\"id\";i:1153;s:4:\"name\";s:11:\"app landing\";}i:927;a:2:{s:2:\"id\";i:1154;s:4:\"name\";s:15:\"product landing\";}i:928;a:2:{s:2:\"id\";i:1155;s:4:\"name\";s:12:\"app showcase\";}i:929;a:2:{s:2:\"id\";i:1156;s:4:\"name\";s:10:\"app header\";}i:930;a:2:{s:2:\"id\";i:1157;s:4:\"name\";s:9:\"nonprofit\";}i:931;a:2:{s:2:\"id\";i:1158;s:4:\"name\";s:13:\"site-template\";}i:932;a:2:{s:2:\"id\";i:1159;s:4:\"name\";s:13:\"body building\";}i:933;a:2:{s:2:\"id\";i:1160;s:4:\"name\";s:10:\"e-commerce\";}i:934;a:2:{s:2:\"id\";i:1161;s:4:\"name\";s:13:\"saas template\";}i:935;a:2:{s:2:\"id\";i:1162;s:4:\"name\";s:5:\"4july\";}i:936;a:2:{s:2:\"id\";i:1163;s:4:\"name\";s:11:\"4th of july\";}i:937;a:2:{s:2:\"id\";i:1164;s:4:\"name\";s:15:\"independent day\";}i:938;a:2:{s:2:\"id\";i:1165;s:4:\"name\";s:8:\"4th july\";}i:939;a:2:{s:2:\"id\";i:1166;s:4:\"name\";s:3:\"usa\";}i:940;a:2:{s:2:\"id\";i:1167;s:4:\"name\";s:8:\"property\";}i:941;a:2:{s:2:\"id\";i:1168;s:4:\"name\";s:14:\"property agent\";}i:942;a:2:{s:2:\"id\";i:1169;s:4:\"name\";s:15:\"startup landing\";}i:943;a:2:{s:2:\"id\";i:1170;s:4:\"name\";s:22:\"christmas landing page\";}i:944;a:2:{s:2:\"id\";i:1171;s:4:\"name\";s:9:\"gift shop\";}i:945;a:2:{s:2:\"id\";i:1172;s:4:\"name\";s:31:\"christmas landing page template\";}i:946;a:2:{s:2:\"id\";i:1173;s:4:\"name\";s:17:\"christmas website\";}i:947;a:2:{s:2:\"id\";i:1174;s:4:\"name\";s:5:\"santa\";}i:948;a:2:{s:2:\"id\";i:1175;s:4:\"name\";s:7:\"holiday\";}i:949;a:2:{s:2:\"id\";i:1176;s:4:\"name\";s:8:\"shopping\";}i:950;a:2:{s:2:\"id\";i:1177;s:4:\"name\";s:15:\"christmas store\";}i:951;a:2:{s:2:\"id\";i:1178;s:4:\"name\";s:15:\"christmas party\";}i:952;a:2:{s:2:\"id\";i:1179;s:4:\"name\";s:19:\"woocommerce website\";}i:953;a:2:{s:2:\"id\";i:1180;s:4:\"name\";s:6:\"animal\";}i:954;a:2:{s:2:\"id\";i:1181;s:4:\"name\";s:4:\"pets\";}i:955;a:2:{s:2:\"id\";i:1182;s:4:\"name\";s:14:\"animal welfare\";}i:956;a:2:{s:2:\"id\";i:1183;s:4:\"name\";s:8:\"pet shop\";}i:957;a:2:{s:2:\"id\";i:1184;s:4:\"name\";s:9:\"pet store\";}i:958;a:2:{s:2:\"id\";i:1185;s:4:\"name\";s:22:\"animal welfare website\";}i:959;a:2:{s:2:\"id\";i:1186;s:4:\"name\";s:31:\"animal welfare website template\";}i:960;a:2:{s:2:\"id\";i:1187;s:4:\"name\";s:16:\"pet shop website\";}i:961;a:2:{s:2:\"id\";i:1188;s:4:\"name\";s:18:\"pet store template\";}i:962;a:2:{s:2:\"id\";i:1189;s:4:\"name\";s:22:\"animal shelter website\";}i:963;a:2:{s:2:\"id\";i:1190;s:4:\"name\";s:11:\"pet daycare\";}i:964;a:2:{s:2:\"id\";i:1191;s:4:\"name\";s:9:\"pet hotel\";}i:965;a:2:{s:2:\"id\";i:1192;s:4:\"name\";s:33:\"animal welfare wordpress template\";}i:966;a:2:{s:2:\"id\";i:1193;s:4:\"name\";s:27:\"pet shop elementor template\";}i:967;a:2:{s:2:\"id\";i:1194;s:4:\"name\";s:29:\"pet daycare website elementor\";}i:968;a:2:{s:2:\"id\";i:1195;s:4:\"name\";s:43:\"animal welfare elementor template wordpress\";}i:969;a:2:{s:2:\"id\";i:1196;s:4:\"name\";s:33:\"animal welfare elementor template\";}i:970;a:2:{s:2:\"id\";i:1197;s:4:\"name\";s:15:\"web development\";}i:971;a:2:{s:2:\"id\";i:1198;s:4:\"name\";s:22:\"web development agency\";}i:972;a:2:{s:2:\"id\";i:1199;s:4:\"name\";s:16:\"website designer\";}i:973;a:2:{s:2:\"id\";i:1200;s:4:\"name\";s:26:\"web design agency template\";}i:974;a:2:{s:2:\"id\";i:1201;s:4:\"name\";s:31:\"web development agency template\";}i:975;a:2:{s:2:\"id\";i:1202;s:4:\"name\";s:39:\"web development agency website template\";}i:976;a:2:{s:2:\"id\";i:1203;s:4:\"name\";s:32:\"web development agency wordpress\";}i:977;a:2:{s:2:\"id\";i:1204;s:4:\"name\";s:41:\"web development agency elementor template\";}i:978;a:2:{s:2:\"id\";i:1205;s:4:\"name\";s:16:\"musician website\";}i:979;a:2:{s:2:\"id\";i:1206;s:4:\"name\";s:25:\"musician personal website\";}i:980;a:2:{s:2:\"id\";i:1207;s:4:\"name\";s:16:\"personal website\";}i:981;a:2:{s:2:\"id\";i:1208;s:4:\"name\";s:18:\"music band website\";}i:982;a:2:{s:2:\"id\";i:1209;s:4:\"name\";s:10:\"dj website\";}i:983;a:2:{s:2:\"id\";i:1210;s:4:\"name\";s:6:\"artist\";}i:984;a:2:{s:2:\"id\";i:1211;s:4:\"name\";s:7:\"podcast\";}i:985;a:2:{s:2:\"id\";i:1212;s:4:\"name\";s:16:\"creative content\";}i:986;a:2:{s:2:\"id\";i:1213;s:4:\"name\";s:6:\"singer\";}i:987;a:2:{s:2:\"id\";i:1214;s:4:\"name\";s:14:\"banner section\";}i:988;a:2:{s:2:\"id\";i:1215;s:4:\"name\";s:12:\"hero section\";}i:989;a:2:{s:2:\"id\";i:1216;s:4:\"name\";s:16:\"about us section\";}i:990;a:2:{s:2:\"id\";i:1217;s:4:\"name\";s:19:\"team member section\";}i:991;a:2:{s:2:\"id\";i:1218;s:4:\"name\";s:20:\"motivational speaker\";}i:992;a:2:{s:2:\"id\";i:1219;s:4:\"name\";s:29:\"motivational speaker template\";}i:993;a:2:{s:2:\"id\";i:1220;s:4:\"name\";s:10:\"consultant\";}i:994;a:2:{s:2:\"id\";i:1221;s:4:\"name\";s:11:\"consultancy\";}i:995;a:2:{s:2:\"id\";i:1222;s:4:\"name\";s:19:\"personal consultant\";}i:996;a:2:{s:2:\"id\";i:1223;s:4:\"name\";s:10:\"instructor\";}i:997;a:2:{s:2:\"id\";i:1224;s:4:\"name\";s:14:\"business coach\";}i:998;a:2:{s:2:\"id\";i:1225;s:4:\"name\";s:10:\"life coach\";}i:999;a:2:{s:2:\"id\";i:1226;s:4:\"name\";s:14:\"public speaker\";}i:1000;a:2:{s:2:\"id\";i:1227;s:4:\"name\";s:6:\"mentor\";}i:1001;a:2:{s:2:\"id\";i:1228;s:4:\"name\";s:7:\"teacher\";}i:1002;a:2:{s:2:\"id\";i:1229;s:4:\"name\";s:20:\"personal development\";}i:1003;a:2:{s:2:\"id\";i:1230;s:4:\"name\";s:9:\"therapist\";}i:1004;a:2:{s:2:\"id\";i:1231;s:4:\"name\";s:12:\"psychiatrist\";}i:1005;a:2:{s:2:\"id\";i:1232;s:4:\"name\";s:12:\"psychologist\";}i:1006;a:2:{s:2:\"id\";i:1233;s:4:\"name\";s:7:\"trainer\";}i:1007;a:2:{s:2:\"id\";i:1234;s:4:\"name\";s:28:\"motivational speaker website\";}i:1008;a:2:{s:2:\"id\";i:1235;s:4:\"name\";s:37:\"motivational speaker website template\";}i:1009;a:2:{s:2:\"id\";i:1236;s:4:\"name\";s:10:\"seo agency\";}i:1010;a:2:{s:2:\"id\";i:1237;s:4:\"name\";s:13:\"seo marketing\";}i:1011;a:2:{s:2:\"id\";i:1238;s:4:\"name\";s:20:\"seo marketing agency\";}i:1012;a:2:{s:2:\"id\";i:1239;s:4:\"name\";s:27:\"seo agency website template\";}i:1013;a:2:{s:2:\"id\";i:1240;s:4:\"name\";s:30:\"seo marketing website template\";}i:1014;a:2:{s:2:\"id\";i:1241;s:4:\"name\";s:11:\"agriculture\";}i:1015;a:2:{s:2:\"id\";i:1242;s:4:\"name\";s:25:\"cyber monday landing page\";}i:1016;a:2:{s:2:\"id\";i:1243;s:4:\"name\";s:18:\"cyber monday sales\";}i:1017;a:2:{s:2:\"id\";i:1244;s:4:\"name\";s:29:\"cyber monday website template\";}i:1018;a:2:{s:2:\"id\";i:1245;s:4:\"name\";s:23:\"courier service website\";}i:1019;a:2:{s:2:\"id\";i:1246;s:4:\"name\";s:24:\"delivery service website\";}i:1020;a:2:{s:2:\"id\";i:1247;s:4:\"name\";s:18:\"life coach website\";}i:1021;a:2:{s:2:\"id\";i:1248;s:4:\"name\";s:27:\"life coach website template\";}i:1022;a:2:{s:2:\"id\";i:1249;s:4:\"name\";s:19:\"testimonial section\";}i:1023;a:2:{s:2:\"id\";i:1250;s:4:\"name\";s:14:\"video tutorial\";}i:1024;a:2:{s:2:\"id\";i:1251;s:4:\"name\";s:8:\"features\";}i:1025;a:2:{s:2:\"id\";i:1252;s:4:\"name\";s:14:\"features block\";}i:1026;a:2:{s:2:\"id\";i:1253;s:4:\"name\";s:23:\"wordpress template pack\";}i:1027;a:2:{s:2:\"id\";i:1254;s:4:\"name\";s:23:\"elementor template pack\";}i:1028;a:2:{s:2:\"id\";i:1255;s:4:\"name\";s:30:\"elementor agriculture template\";}i:1029;a:2:{s:2:\"id\";i:1256;s:4:\"name\";s:26:\"elementor farming template\";}i:1030;a:2:{s:2:\"id\";i:1257;s:4:\"name\";s:30:\"wordpress agriculture template\";}i:1031;a:2:{s:2:\"id\";i:1258;s:4:\"name\";s:26:\"wordpress farming template\";}i:1032;a:2:{s:2:\"id\";i:1259;s:4:\"name\";s:15:\"fitness trainer\";}i:1033;a:2:{s:2:\"id\";i:1260;s:4:\"name\";s:32:\"fitness trainer website template\";}i:1034;a:2:{s:2:\"id\";i:1261;s:4:\"name\";s:24:\"personal fitness trainer\";}i:1035;a:2:{s:2:\"id\";i:1262;s:4:\"name\";s:24:\"fitness trainer template\";}i:1036;a:2:{s:2:\"id\";i:1263;s:4:\"name\";s:32:\"personal fitness trainer website\";}i:1037;a:2:{s:2:\"id\";i:1264;s:4:\"name\";s:13:\"fitness coach\";}i:1038;a:2:{s:2:\"id\";i:1265;s:4:\"name\";s:30:\"fitness coach website template\";}i:1039;a:2:{s:2:\"id\";i:1266;s:4:\"name\";s:11:\"gym trainer\";}i:1040;a:2:{s:2:\"id\";i:1267;s:4:\"name\";s:33:\"fitness trainer website wordpress\";}i:1041;a:2:{s:2:\"id\";i:1268;s:4:\"name\";s:33:\"fitness trainer website elementor\";}i:1042;a:2:{s:2:\"id\";i:1269;s:4:\"name\";s:8:\"nav menu\";}i:1043;a:2:{s:2:\"id\";i:1270;s:4:\"name\";s:11:\"sweet pixie\";}i:1044;a:2:{s:2:\"id\";i:1271;s:4:\"name\";s:2:\"dj\";}i:1045;a:2:{s:2:\"id\";i:1272;s:4:\"name\";s:22:\"music website template\";}i:1046;a:2:{s:2:\"id\";i:1273;s:4:\"name\";s:19:\"music band template\";}i:1047;a:2:{s:2:\"id\";i:1274;s:4:\"name\";s:19:\"dj website template\";}i:1048;a:2:{s:2:\"id\";i:1275;s:4:\"name\";s:7:\"plumber\";}i:1049;a:2:{s:2:\"id\";i:1276;s:4:\"name\";s:8:\"plumbing\";}i:1050;a:2:{s:2:\"id\";i:1277;s:4:\"name\";s:15:\"plumber website\";}i:1051;a:2:{s:2:\"id\";i:1278;s:4:\"name\";s:29:\"construction website template\";}i:1052;a:2:{s:2:\"id\";i:1279;s:4:\"name\";s:17:\"building business\";}i:1053;a:2:{s:2:\"id\";i:1280;s:4:\"name\";s:6:\"repair\";}i:1054;a:2:{s:2:\"id\";i:1281;s:4:\"name\";s:24:\"plumber website template\";}i:1055;a:2:{s:2:\"id\";i:1282;s:4:\"name\";s:16:\"plumbing website\";}i:1056;a:2:{s:2:\"id\";i:1283;s:4:\"name\";s:16:\"plumbing service\";}i:1057;a:2:{s:2:\"id\";i:1284;s:4:\"name\";s:15:\"plumbing repair\";}i:1058;a:2:{s:2:\"id\";i:1285;s:4:\"name\";s:11:\"home repair\";}i:1059;a:2:{s:2:\"id\";i:1286;s:4:\"name\";s:13:\"office repair\";}i:1060;a:2:{s:2:\"id\";i:1287;s:4:\"name\";s:10:\"renovation\";}i:1061;a:2:{s:2:\"id\";i:1288;s:4:\"name\";s:13:\"sanitary ware\";}i:1062;a:2:{s:2:\"id\";i:1289;s:4:\"name\";s:13:\"sanitary shop\";}i:1063;a:2:{s:2:\"id\";i:1290;s:4:\"name\";s:22:\"sanitary shop business\";}i:1064;a:2:{s:2:\"id\";i:1291;s:4:\"name\";s:14:\"repair service\";}i:1065;a:2:{s:2:\"id\";i:1292;s:4:\"name\";s:26:\"plumbing website wordpress\";}i:1066;a:2:{s:2:\"id\";i:1293;s:4:\"name\";s:25:\"elementor plumber website\";}i:1067;a:2:{s:2:\"id\";i:1294;s:4:\"name\";s:18:\"corporate business\";}i:1068;a:2:{s:2:\"id\";i:1295;s:4:\"name\";s:26:\"corporate business website\";}i:1069;a:2:{s:2:\"id\";i:1296;s:4:\"name\";s:25:\"business training website\";}i:1070;a:2:{s:2:\"id\";i:1297;s:4:\"name\";s:25:\"business coaching website\";}i:1071;a:2:{s:2:\"id\";i:1298;s:4:\"name\";s:35:\"corporate business website template\";}i:1072;a:2:{s:2:\"id\";i:1299;s:4:\"name\";s:26:\"corporate website template\";}i:1073;a:2:{s:2:\"id\";i:1300;s:4:\"name\";s:8:\"investor\";}i:1074;a:2:{s:2:\"id\";i:1301;s:4:\"name\";s:10:\"accountant\";}i:1075;a:2:{s:2:\"id\";i:1302;s:4:\"name\";s:10:\"investment\";}i:1076;a:2:{s:2:\"id\";i:1303;s:4:\"name\";s:15:\"investment firm\";}i:1077;a:2:{s:2:\"id\";i:1304;s:4:\"name\";s:36:\"corporate business website wordpress\";}i:1078;a:2:{s:2:\"id\";i:1305;s:4:\"name\";s:27:\"elementor business template\";}i:1079;a:2:{s:2:\"id\";i:1306;s:4:\"name\";s:20:\"christmas gift store\";}i:1080;a:2:{s:2:\"id\";i:1307;s:4:\"name\";s:28:\"christmas gift store website\";}i:1081;a:2:{s:2:\"id\";i:1308;s:4:\"name\";s:26:\"christmas website template\";}i:1082;a:2:{s:2:\"id\";i:1309;s:4:\"name\";s:5:\"gifts\";}i:1083;a:2:{s:2:\"id\";i:1310;s:4:\"name\";s:4:\"toys\";}i:1084;a:2:{s:2:\"id\";i:1311;s:4:\"name\";s:11:\"accessories\";}i:1085;a:2:{s:2:\"id\";i:1312;s:4:\"name\";s:11:\"pet service\";}i:1086;a:2:{s:2:\"id\";i:1313;s:4:\"name\";s:19:\"pet service website\";}i:1087;a:2:{s:2:\"id\";i:1314;s:4:\"name\";s:12:\"pet grooming\";}i:1088;a:2:{s:2:\"id\";i:1315;s:4:\"name\";s:28:\"pet service website template\";}i:1089;a:2:{s:2:\"id\";i:1316;s:4:\"name\";s:30:\"pet service wordpress template\";}i:1090;a:2:{s:2:\"id\";i:1317;s:4:\"name\";s:30:\"pet service elementor template\";}i:1091;a:2:{s:2:\"id\";i:1318;s:4:\"name\";s:8:\"traveler\";}i:1092;a:2:{s:2:\"id\";i:1319;s:4:\"name\";s:16:\"traveler website\";}i:1093;a:2:{s:2:\"id\";i:1320;s:4:\"name\";s:25:\"traveler website template\";}i:1094;a:2:{s:2:\"id\";i:1321;s:4:\"name\";s:22:\"travel booking website\";}i:1095;a:2:{s:2:\"id\";i:1322;s:4:\"name\";s:35:\"traveler website template wordpress\";}i:1096;a:2:{s:2:\"id\";i:1323;s:4:\"name\";s:35:\"traveler website template elementor\";}i:1097;a:2:{s:2:\"id\";i:1324;s:4:\"name\";s:27:\"header section for artesian\";}i:1098;a:2:{s:2:\"id\";i:1325;s:4:\"name\";s:27:\"footer section for artesian\";}i:1099;a:2:{s:2:\"id\";i:1326;s:4:\"name\";s:26:\"wordpress website template\";}i:1100;a:2:{s:2:\"id\";i:1327;s:4:\"name\";s:17:\"ecommerce website\";}i:1101;a:2:{s:2:\"id\";i:1328;s:4:\"name\";s:9:\"ecommerce\";}i:1102;a:2:{s:2:\"id\";i:1329;s:4:\"name\";s:15:\"halloween sales\";}i:1103;a:2:{s:2:\"id\";i:1330;s:4:\"name\";s:15:\"halloween party\";}i:1104;a:2:{s:2:\"id\";i:1331;s:4:\"name\";s:15:\"halloween event\";}i:1105;a:2:{s:2:\"id\";i:1332;s:4:\"name\";s:10:\"event page\";}i:1106;a:2:{s:2:\"id\";i:1333;s:4:\"name\";s:11:\"celebration\";}i:1107;a:2:{s:2:\"id\";i:1334;s:4:\"name\";s:29:\"halloween sales page template\";}i:1108;a:2:{s:2:\"id\";i:1335;s:4:\"name\";s:24:\"halloween party template\";}i:1109;a:2:{s:2:\"id\";i:1336;s:4:\"name\";s:24:\"halloween event template\";}i:1110;a:2:{s:2:\"id\";i:1337;s:4:\"name\";s:15:\"event organizer\";}i:1111;a:2:{s:2:\"id\";i:1338;s:4:\"name\";s:32:\"halloween event website template\";}i:1112;a:2:{s:2:\"id\";i:1339;s:4:\"name\";s:21:\"online clothing store\";}i:1113;a:2:{s:2:\"id\";i:1340;s:4:\"name\";s:10:\"shoe store\";}i:1114;a:2:{s:2:\"id\";i:1341;s:4:\"name\";s:12:\"beauty store\";}i:1115;a:2:{s:2:\"id\";i:1342;s:4:\"name\";s:31:\"clothing store website template\";}i:1116;a:2:{s:2:\"id\";i:1343;s:4:\"name\";s:30:\"online clothing store template\";}i:1117;a:2:{s:2:\"id\";i:1344;s:4:\"name\";s:23:\"clothing retail website\";}i:1118;a:2:{s:2:\"id\";i:1345;s:4:\"name\";s:24:\"fashion website template\";}i:1119;a:2:{s:2:\"id\";i:1346;s:4:\"name\";s:28:\"woocommerce website template\";}i:1120;a:2:{s:2:\"id\";i:1347;s:4:\"name\";s:22:\"freelance photographer\";}i:1121;a:2:{s:2:\"id\";i:1348;s:4:\"name\";s:19:\"freelance portfolio\";}i:1122;a:2:{s:2:\"id\";i:1349;s:4:\"name\";s:40:\"freelance photographer portfolio website\";}i:1123;a:2:{s:2:\"id\";i:1350;s:4:\"name\";s:39:\"freelance photographer website template\";}i:1124;a:2:{s:2:\"id\";i:1351;s:4:\"name\";s:31:\"photographer template elementor\";}i:1125;a:2:{s:2:\"id\";i:1352;s:4:\"name\";s:29:\"freelancer template elementor\";}i:1126;a:2:{s:2:\"id\";i:1353;s:4:\"name\";s:29:\"wordpress freelancer template\";}i:1127;a:2:{s:2:\"id\";i:1354;s:4:\"name\";s:31:\"wordpress photographer template\";}i:1128;a:2:{s:2:\"id\";i:1355;s:4:\"name\";s:16:\"new year website\";}i:1129;a:2:{s:2:\"id\";i:1356;s:4:\"name\";s:22:\"new year party website\";}i:1130;a:2:{s:2:\"id\";i:1357;s:4:\"name\";s:25:\"new year website template\";}i:1131;a:2:{s:2:\"id\";i:1358;s:4:\"name\";s:20:\"new year celebration\";}i:1132;a:2:{s:2:\"id\";i:1359;s:4:\"name\";s:8:\"festival\";}i:1133;a:2:{s:2:\"id\";i:1360;s:4:\"name\";s:16:\"festival website\";}i:1134;a:2:{s:2:\"id\";i:1361;s:4:\"name\";s:22:\"music festival website\";}i:1135;a:2:{s:2:\"id\";i:1362;s:4:\"name\";s:31:\"new year party website template\";}i:1136;a:2:{s:2:\"id\";i:1363;s:4:\"name\";s:5:\"party\";}i:1137;a:2:{s:2:\"id\";i:1364;s:4:\"name\";s:7:\"concert\";}i:1138;a:2:{s:2:\"id\";i:1365;s:4:\"name\";s:15:\"concert website\";}i:1139;a:2:{s:2:\"id\";i:1366;s:4:\"name\";s:27:\"new year elementor template\";}i:1140;a:2:{s:2:\"id\";i:1367;s:4:\"name\";s:33:\"new year party wordpress template\";}i:1141;a:2:{s:2:\"id\";i:1368;s:4:\"name\";s:27:\"new year wordpress template\";}i:1142;a:2:{s:2:\"id\";i:1369;s:4:\"name\";s:10:\"mobile app\";}i:1143;a:2:{s:2:\"id\";i:1370;s:4:\"name\";s:18:\"mobile app website\";}i:1144;a:2:{s:2:\"id\";i:1371;s:4:\"name\";s:27:\"mobile app website template\";}i:1145;a:2:{s:2:\"id\";i:1372;s:4:\"name\";s:23:\"mobile app landing page\";}i:1146;a:2:{s:2:\"id\";i:1373;s:4:\"name\";s:32:\"mobile app landing page template\";}i:1147;a:2:{s:2:\"id\";i:1374;s:4:\"name\";s:21:\"mobile app developers\";}i:1148;a:2:{s:2:\"id\";i:1375;s:4:\"name\";s:33:\"elementor mobile app landing page\";}i:1149;a:2:{s:2:\"id\";i:1376;s:4:\"name\";s:28:\"elementor mobile app website\";}i:1150;a:2:{s:2:\"id\";i:1377;s:4:\"name\";s:33:\"wordpress mobile app landing page\";}i:1151;a:2:{s:2:\"id\";i:1378;s:4:\"name\";s:28:\"wordpress mobile app website\";}i:1152;a:2:{s:2:\"id\";i:1379;s:4:\"name\";s:13:\"jewelry store\";}i:1153;a:2:{s:2:\"id\";i:1380;s:4:\"name\";s:18:\"shoe store website\";}i:1154;a:2:{s:2:\"id\";i:1381;s:4:\"name\";s:19:\"shoe store template\";}i:1155;a:2:{s:2:\"id\";i:1382;s:4:\"name\";s:26:\"online shoe store template\";}i:1156;a:2:{s:2:\"id\";i:1383;s:4:\"name\";s:14:\"coupon website\";}i:1157;a:2:{s:2:\"id\";i:1384;s:4:\"name\";s:12:\"deal website\";}i:1158;a:2:{s:2:\"id\";i:1385;s:4:\"name\";s:9:\"affiliate\";}i:1159;a:2:{s:2:\"id\";i:1386;s:4:\"name\";s:19:\"affiliate marketing\";}i:1160;a:2:{s:2:\"id\";i:1387;s:4:\"name\";s:23:\"coupon website template\";}i:1161;a:2:{s:2:\"id\";i:1388;s:4:\"name\";s:27:\"coupon website landing page\";}i:1162;a:2:{s:2:\"id\";i:1389;s:4:\"name\";s:20:\"daily deals template\";}i:1163;a:2:{s:2:\"id\";i:1390;s:4:\"name\";s:28:\"daily deals website template\";}i:1164;a:2:{s:2:\"id\";i:1391;s:4:\"name\";s:24:\"coupon website wordpress\";}i:1165;a:2:{s:2:\"id\";i:1392;s:4:\"name\";s:3:\"art\";}i:1166;a:2:{s:2:\"id\";i:1393;s:4:\"name\";s:14:\"artist website\";}i:1167;a:2:{s:2:\"id\";i:1394;s:4:\"name\";s:7:\"painter\";}i:1168;a:2:{s:2:\"id\";i:1395;s:4:\"name\";s:15:\"painter website\";}i:1169;a:2:{s:2:\"id\";i:1396;s:4:\"name\";s:23:\"personal artist website\";}i:1170;a:2:{s:2:\"id\";i:1397;s:4:\"name\";s:23:\"artist website template\";}i:1171;a:2:{s:2:\"id\";i:1398;s:4:\"name\";s:25:\"personal website template\";}i:1172;a:2:{s:2:\"id\";i:1399;s:4:\"name\";s:24:\"painter website template\";}i:1173;a:2:{s:2:\"id\";i:1400;s:4:\"name\";s:11:\"art gallery\";}i:1174;a:2:{s:2:\"id\";i:1401;s:4:\"name\";s:9:\"art store\";}i:1175;a:2:{s:2:\"id\";i:1402;s:4:\"name\";s:15:\"arts and crafts\";}i:1176;a:2:{s:2:\"id\";i:1403;s:4:\"name\";s:8:\"painting\";}i:1177;a:2:{s:2:\"id\";i:1404;s:4:\"name\";s:7:\"drawing\";}i:1178;a:2:{s:2:\"id\";i:1405;s:4:\"name\";s:11:\"art teacher\";}i:1179;a:2:{s:2:\"id\";i:1406;s:4:\"name\";s:9:\"art class\";}i:1180;a:2:{s:2:\"id\";i:1407;s:4:\"name\";s:8:\"art shop\";}i:1181;a:2:{s:2:\"id\";i:1408;s:4:\"name\";s:10:\"paint shop\";}i:1182;a:2:{s:2:\"id\";i:1409;s:4:\"name\";s:11:\"paint store\";}i:1183;a:2:{s:2:\"id\";i:1410;s:4:\"name\";s:16:\"freelance artist\";}i:1184;a:2:{s:2:\"id\";i:1411;s:4:\"name\";s:8:\"designer\";}i:1185;a:2:{s:2:\"id\";i:1412;s:4:\"name\";s:25:\"wordpress artist template\";}i:1186;a:2:{s:2:\"id\";i:1413;s:4:\"name\";s:24:\"wordpress artist website\";}i:1187;a:2:{s:2:\"id\";i:1414;s:4:\"name\";s:25:\"elementor artist template\";}i:1188;a:2:{s:2:\"id\";i:1415;s:4:\"name\";s:19:\"business consultant\";}i:1189;a:2:{s:2:\"id\";i:1416;s:4:\"name\";s:27:\"business consultant website\";}i:1190;a:2:{s:2:\"id\";i:1417;s:4:\"name\";s:29:\"personal business consultancy\";}i:1191;a:2:{s:2:\"id\";i:1418;s:4:\"name\";s:36:\"business consultant website template\";}}','yes'),(3277,'elementor_allow_tracking','no','yes'),(3278,'elementor_tracker_notice','1','yes'),(3299,'cc62a1c14_elements','a:1:{i:5;s:13:\"adv-accordion\";}','yes'),(3300,'cc62a1c14_custom_js','','yes'),(3301,'cc62a1c14_updated_at','1614651544','yes'),(3570,'ec42e06de_elements','a:0:{}','yes'),(3571,'ec42e06de_custom_js','','yes'),(3572,'ec42e06de_updated_at','1614651544','yes'),(4214,'wbc_settings','a:12:{s:19:\"show_events_loading\";s:3:\"yes\";s:16:\"add_event_filter\";s:2:\"no\";s:16:\"customize_colors\";s:3:\"yes\";s:21:\"attach_in_single_page\";s:2:\"no\";s:17:\"disable_back_past\";s:2:\"no\";s:13:\"calendar_view\";a:3:{i:0;s:8:\"list_day\";i:1;s:9:\"list_week\";i:2;s:10:\"list_month\";}s:15:\"color_available\";s:7:\"#00d181\";s:18:\"color_not_bookable\";s:7:\"#ff0000\";s:16:\"when_unavailable\";s:13:\"show_readonly\";s:11:\"time_format\";s:7:\"h(:mm)a\";s:6:\"locale\";s:2:\"en\";s:19:\"calendar_start_date\";s:0:\"\";}','yes'),(5552,'_transient_orders-transient-version','1613519534','yes'),(5556,'woocommerce_wc-booking-gateway_settings','a:1:{s:7:\"enabled\";s:3:\"yes\";}','yes'),(5557,'woocommerce_bacs_settings','a:11:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:20:\"Direct bank transfer\";s:11:\"description\";s:176:\"Make your payment directly into our bank account. Please use your Order ID as the payment reference. Your order will not be shipped until the funds have cleared in our account.\";s:12:\"instructions\";s:0:\"\";s:15:\"account_details\";s:0:\"\";s:12:\"account_name\";s:0:\"\";s:14:\"account_number\";s:0:\"\";s:9:\"sort_code\";s:0:\"\";s:9:\"bank_name\";s:0:\"\";s:4:\"iban\";s:0:\"\";s:3:\"bic\";s:0:\"\";}','yes'),(5569,'woocommerce_bacs_accounts','a:1:{i:0;a:6:{s:12:\"account_name\";s:13:\"Eco Solutions\";s:14:\"account_number\";s:13:\"1001022031286\";s:9:\"bank_name\";s:19:\"First Security Bank\";s:9:\"sort_code\";s:9:\"082901538\";s:4:\"iban\";s:0:\"\";s:3:\"bic\";s:8:\"FSBAUS44\";}}','yes'),(5675,'woocommerce_sales_record_date','2021-02-11','yes'),(5676,'woocommerce_sales_record_amount','1600','yes'),(5778,'wcpay_should_redirect_to_onboarding','','yes'),(5779,'jetpack_connection_active_plugins','a:1:{s:20:\"woocommerce-payments\";a:1:{s:4:\"name\";s:20:\"WooCommerce Payments\";}}','yes'),(5781,'jetpack_options','a:6:{s:14:\"last_heartbeat\";i:1618366929;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:189279269;s:6:\"public\";i:1;s:11:\"master_user\";i:1;}','yes'),(5786,'jetpack_secrets','a:0:{}','no'),(5787,'_transient_jetpack_assumed_site_creation_date','2021-01-24 22:00:33','yes'),(5788,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"VLXu^r9bYqXBHCwR4*rpDxQUqYnz2t%Y.Vye52BIE@PNBmTGfp42wkZP0K86z*#wG\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"Ec#z61hmru5P#!ZbKdDRodr7vh2x1&x).dnJsrlvOyrlQR^r8lFBWysRqFBFFvq6G.1\";}}','yes'),(5789,'woocommerce_setup_jetpack_opted_in','1','yes'),(5801,'woocommerce_woocommerce_payments_settings','a:8:{s:7:\"enabled\";s:3:\"yes\";s:15:\"account_details\";s:0:\"\";s:14:\"account_status\";s:0:\"\";s:12:\"account_fees\";s:0:\"\";s:14:\"manual_capture\";s:2:\"no\";s:11:\"saved_cards\";s:3:\"yes\";s:9:\"test_mode\";s:2:\"no\";s:14:\"enable_logging\";s:2:\"no\";}','yes'),(5806,'woocommerce_ces_tracks_queue','a:0:{}','yes'),(5816,'woocommerce_clear_ces_tracks_queue_for_page','','yes'),(5830,'woocommerce_gateway_order','a:6:{s:20:\"woocommerce_payments\";i:0;s:4:\"bacs\";i:1;s:6:\"cheque\";i:2;s:3:\"cod\";i:3;s:6:\"paypal\";i:4;s:18:\"wc-booking-gateway\";i:5;}','yes'),(5845,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),(5850,'woocommerce_ces_shown_for_actions','a:2:{i:0;s:15:\"settings_change\";i:1;s:17:\"shop_order_update\";}','yes'),(5870,'bookly_data_loaded','1','yes'),(5871,'bookly_db_version','19.6.1','yes'),(5872,'bookly_installation_time','1613183775','yes'),(5873,'bookly_admin_preferred_language','','yes'),(5874,'bookly_app_color','#f4662f','yes'),(5875,'bookly_app_custom_styles','','yes'),(5876,'bookly_app_required_employee','0','yes'),(5877,'bookly_app_service_name_with_duration','0','yes'),(5878,'bookly_app_show_blocked_timeslots','0','yes'),(5879,'bookly_app_show_calendar','0','yes'),(5880,'bookly_app_show_day_one_column','0','yes'),(5881,'bookly_app_show_login_button','0','yes'),(5882,'bookly_app_show_notes','1','yes'),(5883,'bookly_app_show_progress_tracker','1','yes'),(5884,'bookly_app_align_buttons_left','0','yes'),(5885,'bookly_app_staff_name_with_price','1','yes'),(5886,'bookly_app_show_email_confirm','0','yes'),(5887,'bookly_app_show_start_over','1','yes'),(5888,'bookly_l10n_button_apply','Apply','yes'),(5889,'bookly_l10n_button_back','Back','yes'),(5890,'bookly_l10n_info_complete_step','Thank you! Your booking is complete. An email with details of your booking has been sent to you.','yes'),(5891,'bookly_l10n_info_complete_step_limit_error','You are trying to use the service too often. Please contact us to make a booking.','yes'),(5892,'bookly_l10n_info_complete_step_processing','Your payment has been accepted for processing.','yes'),(5893,'bookly_l10n_info_details_step','You selected a booking for {service_name} by {staff_name} at {appointment_time} on {appointment_date}. The price for the service is {service_price}.\nPlease provide your details in the form below to proceed with booking.','yes'),(5894,'bookly_l10n_info_details_step_guest','','yes'),(5895,'bookly_l10n_info_payment_step_single_app','Please tell us how you would like to pay: ','yes'),(5896,'bookly_l10n_info_service_step','Please select service: ','yes'),(5897,'bookly_l10n_info_time_step','Below you can find a list of available time slots for {service_name} by {staff_name}.\nClick on a time slot to proceed with booking.','yes'),(5898,'bookly_l10n_label_category','Category','yes'),(5899,'bookly_l10n_label_email','Email','yes'),(5900,'bookly_l10n_label_email_confirm','Confirm email','yes'),(5901,'bookly_l10n_label_employee','Employee','yes'),(5902,'bookly_l10n_label_finish_by','Finish by','yes'),(5903,'bookly_l10n_label_name','Full name','yes'),(5904,'bookly_l10n_label_first_name','First name','yes'),(5905,'bookly_l10n_label_last_name','Last name','yes'),(5906,'bookly_l10n_label_notes','Notes','yes'),(5907,'bookly_l10n_label_pay_locally','I will pay locally','yes'),(5908,'bookly_l10n_label_pay_cloud_stripe','I will pay now with Credit Card','yes'),(5909,'bookly_l10n_label_phone','Phone','yes'),(5910,'bookly_l10n_label_select_date','I\'m available on or after','yes'),(5911,'bookly_l10n_label_service','Service','yes'),(5912,'bookly_l10n_label_start_from','Start from','yes'),(5913,'bookly_l10n_option_category','Select category','yes'),(5914,'bookly_l10n_option_employee','Any','yes'),(5915,'bookly_l10n_option_service','Select service','yes'),(5916,'bookly_l10n_option_day','Select day','yes'),(5917,'bookly_l10n_option_month','Select month','yes'),(5918,'bookly_l10n_option_year','Select year','yes'),(5919,'bookly_l10n_required_email','Please tell us your email','yes'),(5920,'bookly_l10n_email_confirm_not_match','Email confirmation doesn\'t match','yes'),(5921,'bookly_l10n_required_employee','Please select an employee','yes'),(5922,'bookly_l10n_required_name','Please tell us your name','yes'),(5923,'bookly_l10n_required_first_name','Please tell us your first name','yes'),(5924,'bookly_l10n_required_last_name','Please tell us your last name','yes'),(5925,'bookly_l10n_required_phone','Please tell us your phone','yes'),(5926,'bookly_l10n_required_service','Please select a service','yes'),(5927,'bookly_l10n_step_service','Service','yes'),(5928,'bookly_l10n_step_time','Time','yes'),(5929,'bookly_l10n_step_time_slot_not_available','The selected time is not available anymore. Please, choose another time slot.','yes'),(5930,'bookly_l10n_step_details','Details','yes'),(5931,'bookly_l10n_step_details_button_login','Login','yes'),(5932,'bookly_l10n_step_payment','Payment','yes'),(5933,'bookly_l10n_step_done','Done','yes'),(5934,'bookly_l10n_step_done_button_start_over','Start over','yes'),(5935,'bookly_l10n_step_service_button_next','Next','yes'),(5936,'bookly_l10n_step_service_mobile_button_next','Next','yes'),(5937,'bookly_l10n_step_details_button_next','Next','yes'),(5938,'bookly_l10n_step_payment_button_next','Next','yes'),(5939,'bookly_cal_show_only_business_days','1','yes'),(5940,'bookly_cal_show_only_business_hours','1','yes'),(5941,'bookly_cal_show_only_staff_with_appointments','1','yes'),(5942,'bookly_cal_one_participant','{service_name}\n{client_name}\n{client_phone}\n{client_email}\n{total_price} {payment_type} {payment_status}\nStatus: {status}\nSigned up: {signed_up}\nCapacity: {service_capacity}','yes'),(5943,'bookly_cal_many_participants','{service_name}\nSigned up: {signed_up}\nCapacity: {service_capacity}','yes'),(5944,'bookly_co_logo_attachment_id','','yes'),(5945,'bookly_co_name','','yes'),(5946,'bookly_co_address','','yes'),(5947,'bookly_co_phone','','yes'),(5948,'bookly_co_website','','yes'),(5949,'bookly_cst_allow_duplicates','0','yes'),(5950,'bookly_cst_cancel_action','cancel','yes'),(5951,'bookly_cst_create_account','0','yes'),(5952,'bookly_cst_default_country_code','','yes'),(5953,'bookly_cst_first_last_name','0','yes'),(5954,'bookly_cst_phone_default_country','auto','yes'),(5955,'bookly_cst_remember_in_cookie','0','yes'),(5956,'bookly_cst_required_address','0','yes'),(5957,'bookly_cst_required_birthday','0','yes'),(5958,'bookly_cst_required_details','a:2:{i:0;s:5:\"phone\";i:1;s:5:\"email\";}','yes'),(5959,'bookly_cst_show_update_details_dialog','1','yes'),(5960,'bookly_email_sender','ekow@esselwebdesign.com','yes'),(5961,'bookly_email_sender_name','Eco Solutions','yes'),(5962,'bookly_email_send_as','html','yes'),(5963,'bookly_email_reply_to_customers','1','yes'),(5964,'bookly_gen_time_slot_length','180','yes'),(5965,'bookly_gen_service_duration_as_slot_length','0','yes'),(5966,'bookly_gen_default_appointment_status','approved','yes'),(5967,'bookly_gen_min_time_prior_booking','0','yes'),(5968,'bookly_gen_min_time_prior_cancel','0','yes'),(5969,'bookly_gen_max_days_for_booking','365','yes'),(5970,'bookly_gen_use_client_time_zone','0','yes'),(5971,'bookly_gen_allow_staff_edit_profile','1','yes'),(5972,'bookly_gen_link_assets_method','enqueue','yes'),(5973,'bookly_gen_collect_stats','0','yes'),(5974,'bookly_gen_show_powered_by','0','yes'),(5975,'bookly_gen_prevent_caching','1','yes'),(5976,'bookly_gen_prevent_session_locking','0','yes'),(5977,'bookly_url_approve_page_url','http://edssnow.com','yes'),(5978,'bookly_url_approve_denied_page_url','http://edssnow.com','yes'),(5979,'bookly_url_cancel_page_url','http://edssnow.com','yes'),(5980,'bookly_url_cancel_denied_page_url','http://edssnow.com','yes'),(5981,'bookly_url_reject_page_url','http://edssnow.com','yes'),(5982,'bookly_url_reject_denied_page_url','http://edssnow.com','yes'),(5983,'bookly_sms_administrator_phone','','yes'),(5984,'bookly_sms_undelivered_count','0','yes'),(5985,'bookly_cloud_notify_low_balance','1','yes'),(5986,'bookly_cloud_token','','yes'),(5987,'bookly_cloud_products','a:3:{i:0;a:6:{s:2:\"id\";s:3:\"sms\";s:8:\"icon_url\";s:41:\"https://i.bookly.info/cloud/sms_96x96.png\";s:7:\"version\";s:4:\"18.6\";s:6:\"rating\";s:3:\"5.0\";s:6:\"button\";b:1;s:5:\"texts\";a:8:{s:5:\"title\";s:17:\"SMS Notifications\";s:5:\"price\";s:13:\"Pay as you go\";s:11:\"description\";s:464:\"<p>With <strong>SMS Notifications</strong> service you will keep your customers and staff members informed about their bookings, reduce “no shows” and empty booking slots. The service offers a wide range of codes which you can use to <a href=\"https://support.booking-wp-plugin.com/hc/en-us/articles/212411309\" target=\"_blank\">personalize</a> your text messages.</p><p>Top up your balance with one of the standard amounts and never lose your bookings again.</p>\";s:9:\"action-on\";s:11:\"Get started\";s:10:\"action-off\";s:7:\"Disable\";s:20:\"action-revert-cancel\";s:22:\"I want to keep my plan\";s:11:\"info-button\";s:10:\"SMS Prices\";s:10:\"info-title\";s:10:\"SMS Prices\";}}i:1;a:6:{s:2:\"id\";s:6:\"stripe\";s:8:\"icon_url\";s:44:\"https://i.bookly.info/cloud/stripe_96x96.png\";s:7:\"version\";s:4:\"18.6\";s:6:\"rating\";s:3:\"5.0\";s:6:\"button\";b:1;s:5:\"texts\";a:8:{s:5:\"title\";s:15:\"Stripe Payments\";s:5:\"price\";s:39:\"0.9% <small>per-transaction fee</small>\";s:11:\"description\";s:356:\"<p>With <strong>Stripe Payments</strong> activated, you can integrate <a href=\"https://stripe.com/\" target=\"_blank\">Stripe</a> payment gateway into your Bookly booking form to process credit card payments online.</p><p>Click <strong>Get started</strong> button to connect Bookly to your Stripe account and let customers instantly pay for your services.</p>\";s:9:\"action-on\";s:11:\"Get started\";s:10:\"action-off\";s:7:\"Disable\";s:20:\"action-revert-cancel\";s:22:\"I want to keep my plan\";s:11:\"info-button\";s:9:\"More info\";s:10:\"info-title\";s:5:\"Setup\";}}i:2;a:7:{s:2:\"id\";s:6:\"zapier\";s:8:\"icon_url\";s:44:\"https://i.bookly.info/cloud/zapier-96x96.png\";s:7:\"version\";s:4:\"18.7\";s:6:\"rating\";s:3:\"5.0\";s:6:\"button\";b:1;s:5:\"texts\";a:8:{s:5:\"title\";s:6:\"Zapier\";s:5:\"price\";s:22:\"Your subscription plan\";s:11:\"description\";s:704:\"<p><strong><a href=\"https://zapier.com/\" target=\"_blank\">Zapier</a></strong> allows you to automatically trigger actions in your favorite cloud apps for certain events inside of Bookly: when new bookings are made and updated, and new customers are created.</p>\n<p>You can try <strong>Zapier integration</strong> for free during 7 days to learn more and discover how it can work for you. After the trial period expires, you will be charged for the price of the selected plan.</p>\n<p>Choose your subscription plan, click <strong>Start 7-day Trial</strong> or <strong>Get started</strong> button to set up the connection between Bookly and Zapier, and create individual workflows to perform automations.</p>\";s:9:\"action-on\";s:17:\"Start 7-day Trial\";s:10:\"action-off\";s:19:\"Cancel subscription\";s:20:\"action-revert-cancel\";s:22:\"I want to keep my plan\";s:11:\"info-button\";s:9:\"More info\";s:10:\"info-title\";s:18:\"Zapier Integration\";}s:6:\"prices\";a:5:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:7:\"caption\";s:79:\"$24<sup>.99</sup> per month<br/><small class=\"text-muted\">200 Tasks /mo</small>\";s:4:\"tags\";a:0:{}}i:1;a:3:{s:2:\"id\";s:1:\"2\";s:7:\"caption\";s:79:\"$59<sup>.99</sup> per month<br/><small class=\"text-muted\">500 Tasks /mo</small>\";s:4:\"tags\";a:1:{i:0;s:10:\"best_offer\";}}i:2;a:3:{s:2:\"id\";s:1:\"3\";s:7:\"caption\";s:81:\"$124<sup>.99</sup> per month<br/><small class=\"text-muted\">1100 Tasks /mo</small>\";s:4:\"tags\";a:0:{}}i:3;a:3:{s:2:\"id\";s:1:\"4\";s:7:\"caption\";s:81:\"$249<sup>.99</sup> per month<br/><small class=\"text-muted\">2300 Tasks /mo</small>\";s:4:\"tags\";a:0:{}}i:4;a:3:{s:2:\"id\";s:1:\"5\";s:7:\"caption\";s:82:\"$999<sup>.99</sup> per month<br/><small class=\"text-muted\">12000 Tasks /mo</small>\";s:4:\"tags\";a:0:{}}}}}','yes'),(5988,'bookly_cloud_promotions','a:1:{s:12:\"registration\";a:3:{s:2:\"id\";i:1;s:6:\"amount\";i:5;s:5:\"texts\";a:3:{s:4:\"info\";s:159:\"Register your <strong>Bookly Cloud account</strong> and get <strong>$5 Welcome Bonus</strong> to easily start using <strong>SMS Notifications</strong> feature!\";s:4:\"form\";s:66:\"You will get <strong>$5 welcome bonus</strong> after registration.\";s:6:\"button\";s:0:\"\";}}}','yes'),(5989,'bookly_cloud_account_products','','yes'),(5990,'bookly_cloud_stripe_enabled','0','yes'),(5991,'bookly_cloud_stripe_timeout','0','yes'),(5992,'bookly_cloud_stripe_increase','0','yes'),(5993,'bookly_cloud_stripe_addition','0','yes'),(5994,'bookly_cloud_zapier_api_key','','yes'),(5995,'bookly_bh_monday_start','08:00:00','yes'),(5996,'bookly_bh_monday_end','18:00:00','yes'),(5997,'bookly_bh_tuesday_start','08:00:00','yes'),(5998,'bookly_bh_tuesday_end','18:00:00','yes'),(5999,'bookly_bh_wednesday_start','08:00:00','yes'),(6000,'bookly_bh_wednesday_end','18:00:00','yes'),(6001,'bookly_bh_thursday_end','18:00:00','yes'),(6002,'bookly_bh_thursday_start','08:00:00','yes'),(6003,'bookly_bh_friday_start','08:00:00','yes'),(6004,'bookly_bh_friday_end','18:00:00','yes'),(6005,'bookly_bh_saturday_start','','yes'),(6006,'bookly_bh_saturday_end','','yes'),(6007,'bookly_bh_sunday_start','','yes'),(6008,'bookly_bh_sunday_end','','yes'),(6009,'bookly_pmt_currency','USD','yes'),(6010,'bookly_pmt_price_format','{symbol}{sign}{price|2}','yes'),(6011,'bookly_pmt_order','','yes'),(6012,'bookly_pmt_local','1','yes'),(6013,'bookly_ntf_processing_interval','2','yes'),(6014,'bookly_сa_count','0','yes'),(6015,'bookly_logs_enabled','0','yes'),(6023,'woocommerce_admin_last_orders_milestone','1','yes'),(6095,'woocommerce_tracker_last_send','1617843117','yes'),(6242,'widget_wpdevart_bc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6243,'wpdevart_booking_version_new','10.12','no'),(6257,'4a7759ff2_elements','a:0:{}','yes'),(6258,'4a7759ff2_custom_js','','yes'),(6259,'4a7759ff2_updated_at','1614651544','yes'),(6275,'installed_appointment-hour-booking','1613351389','yes'),(6276,'cp_cpappb_last_verified','2021-04-14 04:47:13','yes'),(6277,'_transient_codepeople_promote_banner_appointment-hour-booking','-1','yes'),(6440,'265a76343_elements','a:0:{}','yes'),(6441,'265a76343_custom_js','','yes'),(6442,'265a76343_updated_at','1614651544','yes'),(6513,'woocommerce_tracker_ua','a:3:{i:0;s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36\";i:1;s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36\";i:2;s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";}','yes'),(6542,'rlrsssl_options','a:15:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:0;s:25:\"ssl_success_message_shown\";b:0;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:6:\"4.0.13\";s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:1;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:0;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:21:\"dismiss_review_notice\";b:0;}','yes'),(6543,'rsssl_remaining_tasks','1','yes'),(6561,'duplicator_settings','a:17:{s:7:\"version\";s:5:\"1.4.0\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:1;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:19:\"installer_name_mode\";s:6:\"simple\";s:16:\"storage_position\";s:6:\"wpcont\";s:20:\"storage_htaccess_off\";b:0;s:18:\"archive_build_mode\";i:2;s:17:\"skip_archive_scan\";b:0;s:21:\"unhook_third_party_js\";b:0;s:22:\"unhook_third_party_css\";b:0;s:17:\"active_package_id\";i:-1;}','yes'),(6562,'duplicator_lite_inst_hash_notice','1','yes'),(6563,'duplicator_version_plugin','1.4.0','yes'),(6567,'duplicator_ui_view_state','a:1:{s:22:\"dup-pack-storage-panel\";s:1:\"1\";}','yes'),(6569,'duplicator_package_active','O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2021-02-16 22:34:10\";s:7:\"Version\";s:8:\"1.3.40.1\";s:9:\"VersionWP\";s:5:\"5.6.1\";s:9:\"VersionDB\";s:6:\"5.6.41\";s:10:\"VersionPHP\";s:6:\"7.3.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:21:\"20210216_ecosolutions\";s:4:\"Hash\";s:35:\"094e5e6a3b0c408a9033_20210216223410\";s:8:\"NameHash\";s:57:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";s:67:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410_scan.json\";s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":21:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:37:\"/home2/church/public_html/edssnow.com\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":5:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":6:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":3:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"file_count\";i:-1;s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2021-02-16 22:34:10\";s:7:\"Version\";s:8:\"1.3.40.1\";s:9:\"VersionWP\";s:5:\"5.6.1\";s:9:\"VersionDB\";s:6:\"5.6.41\";s:10:\"VersionPHP\";s:6:\"7.3.27\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:21:\"20210216_ecosolutions\";s:4:\"Hash\";s:35:\"094e5e6a3b0c408a9033_20210216223410\";s:8:\"NameHash\";s:57:\"20210216_ecosolutions_094e5e6a3b0c408a9033_20210216223410\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:8:\"ScanFile\";N;s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";r:21;s:9:\"Installer\";O:13:\"DUP_Installer\":13:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:13:\"OptsDBCharset\";s:0:\"\";s:15:\"OptsDBCollation\";s:0:\"\";s:12:\"OptsSecureOn\";i:0;s:14:\"OptsSecurePass\";s:0:\"\";s:13:\"numFilesAdded\";i:0;s:12:\"numDirsAdded\";i:0;s:10:\"\0*\0Package\";r:61;}s:8:\"Database\";O:12:\"DUP_Database\":14:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:52:\"Percona Server (GPL), Release 84.1, Revision b308619\";s:4:\"info\";O:16:\"DUP_DatabaseInfo\":15:{s:9:\"buildMode\";N;s:13:\"collationList\";a:0:{}s:17:\"isTablesUpperCase\";N;s:15:\"isNameUpperCase\";N;s:4:\"name\";N;s:15:\"tablesBaseCount\";N;s:16:\"tablesFinalCount\";N;s:14:\"tablesRowCount\";N;s:16:\"tablesSizeOnDisk\";N;s:18:\"varLowerCaseTables\";i:0;s:7:\"version\";N;s:14:\"versionComment\";N;s:18:\"tableWiseRowCounts\";a:0:{}s:33:\"\0DUP_DatabaseInfo\0intFieldsStruct\";a:0:{}s:42:\"\0DUP_DatabaseInfo\0indexProcessedSchemaSize\";a:0:{}}s:10:\"\0*\0Package\";r:61;s:24:\"\0DUP_Database\0tempDbPath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}s:13:\"BuildProgress\";O:18:\"DUP_Build_Progress\":12:{s:17:\"thread_start_time\";N;s:11:\"initialized\";b:0;s:15:\"installer_built\";b:0;s:15:\"archive_started\";b:0;s:20:\"archive_has_database\";b:0;s:13:\"archive_built\";b:0;s:21:\"database_script_built\";b:0;s:6:\"failed\";b:0;s:7:\"retries\";i:0;s:14:\"build_failures\";a:0:{}s:19:\"validation_failures\";a:0:{}s:27:\"\0DUP_Build_Progress\0package\";r:61;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:5:{i:0;s:46:\"/home2/church/public_html/edssnow.com/wp-admin\";i:1;s:56:\"/home2/church/public_html/edssnow.com/wp-content/uploads\";i:2;s:58:\"/home2/church/public_html/edssnow.com/wp-content/languages\";i:3;s:55:\"/home2/church/public_html/edssnow.com/wp-content/themes\";i:4;s:49:\"/home2/church/public_html/edssnow.com/wp-includes\";}s:29:\"\0DUP_Archive\0wpCoreExactPaths\";a:2:{i:0;s:37:\"/home2/church/public_html/edssnow.com\";i:1;s:48:\"/home2/church/public_html/edssnow.com/wp-content\";}}s:9:\"Installer\";r:82;s:8:\"Database\";r:96;s:13:\"BuildProgress\";r:126;}','yes'),(6583,'rsssl_activation_timestamp','1613515563','yes'),(6610,'rsssl_google_analytics_dismissed','1','yes'),(6615,'rsssl_mixed_content_scan_dismissed','1','yes'),(6669,'embedpress_social_dismiss_notice','1','yes'),(6670,'pa_review_notice','1','yes'),(6705,'woocommerce_cheque_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:14:\"Check payments\";s:11:\"description\";s:89:\"Please send a check to:\r\n \r\nEco Solutions \r\nP.O. Box 241607\r\nLittle Rock, Arkansas 72223.\";s:12:\"instructions\";s:0:\"\";}','yes'),(6706,'woocommerce_cod_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:22:\"Check/Cash on delivery\";s:11:\"description\";s:34:\"Pay with check/cash upon delivery.\";s:12:\"instructions\";s:34:\"Pay with check/cash upon delivery.\";s:18:\"enable_for_methods\";s:0:\"\";s:18:\"enable_for_virtual\";s:2:\"no\";}','yes'),(7441,'ed0336eea_elements','a:0:{}','yes'),(7442,'ed0336eea_custom_js','','yes'),(7443,'ed0336eea_updated_at','1614651544','yes'),(7627,'woocommerce_new_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"sheltoncole1@comcast.net\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:28:\"Congratulations on the sale.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(7628,'woocommerce_cancelled_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"sheltoncole1@comcast.net\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:19:\"Thanks for reading.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(7630,'woocommerce_failed_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"sheltoncole1@comcast.net\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:18:\"additional_content\";s:146:\"Hopefully they’ll be back. Read more about <a href=\"https://docs.woocommerce.com/document/managing-orders/\">troubleshooting failed payments</a>.\";s:10:\"email_type\";s:4:\"html\";}','yes'),(7632,'woocommerce_new_booking_settings','a:7:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"sheltoncole1@comcast.net\";s:7:\"subject\";s:0:\"\";s:20:\"subject_confirmation\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:20:\"heading_confirmation\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','yes'),(7633,'woocommerce_admin_booking_cancelled_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:24:\"sheltoncole1@comcast.net\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','yes'),(7964,'1c874b609_elements','a:0:{}','yes'),(7965,'1c874b609_custom_js','','yes'),(7966,'1c874b609_updated_at','1614651544','yes'),(8467,'major_update_notice','1','yes'),(8794,'06a943c59_elements','a:0:{}','yes'),(8795,'06a943c59_custom_js','','yes'),(8796,'06a943c59_updated_at','1614651544','yes'),(9160,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes'),(9193,'_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:57:\"https://downloads.wordpress.org/release/wordpress-5.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.7.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.7-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.7-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.7\";s:7:\"version\";s:3:\"5.7\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1618351743;s:15:\"version_checked\";s:3:\"5.7\";s:12:\"translations\";a:0:{}}','no'),(9205,'_elementor_global_css','a:6:{s:4:\"time\";i:1615374967;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(9219,'17aafa3d4_elements','a:0:{}','yes'),(9220,'17aafa3d4_custom_js','','yes'),(9221,'17aafa3d4_updated_at','1614651544','yes'),(9645,'rsssl_current_version','4.0.13','yes'),(9809,'woocommerce_woocommerce_payments_version','2.2.0','yes'),(10586,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(10626,'cp_cpappb_rep_enable','no','yes'),(10627,'cp_cpappb_rep_days','1','yes'),(10628,'cp_cpappb_rep_hour','0','yes'),(10629,'cp_cpappb_rep_emails','','yes'),(10630,'cp_cpappb_fp_from_email','sheltoncole1@comcast.net','yes'),(10631,'cp_cpappb_rep_subject','Submissions report...','yes'),(10632,'cp_cpappb_rep_emailformat','text','yes'),(10633,'cp_cpappb_rep_message','Attached you will find the data from the form submissions.','yes'),(10656,'_transient_is_multi_author','0','yes'),(10837,'widget_tribe-widget-events-list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(11266,'_transient_timeout_wc_term_counts','1620110424','no'),(11267,'_transient_wc_term_counts','a:1:{i:17;s:1:\"1\";}','no'),(11391,'_transient_timeout_book_res_ids_46270747560094a49bff53ee2d003430','1620249344','no'),(11392,'_transient_book_res_ids_46270747560094a49bff53ee2d003430','a:0:{}','no'),(12048,'_site_transient_timeout_php_check_8c0181da100b1c7d1f637c18117d0149','1618877798','no'),(12049,'_site_transient_php_check_8c0181da100b1c7d1f637c18117d0149','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(12087,'_transient_timeout_tribe_feature_detection','1618895571','no'),(12088,'_transient_tribe_feature_detection','a:1:{s:22:\"supports_async_process\";b:0;}','no'),(12172,'_transient_timeout__woocommerce_helper_subscriptions','1618352644','no'),(12173,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(12174,'_site_transient_timeout_theme_roots','1618353544','no'),(12175,'_site_transient_theme_roots','a:4:{s:5:\"astra\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(12176,'_transient_timeout__woocommerce_helper_updates','1618394944','no'),(12177,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"a40f4f17fb1334f416470e99e8c0aa8c\";s:7:\"updated\";i:1618351744;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(12178,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1618351749;s:7:\"checked\";a:4:{s:5:\"astra\";s:5:\"3.0.1\";s:14:\"twentynineteen\";s:3:\"1.8\";s:12:\"twentytwenty\";s:3:\"1.6\";s:15:\"twentytwentyone\";s:3:\"1.0\";}s:8:\"response\";a:4:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:5:\"3.3.2\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/astra.3.3.2.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.7.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.2.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(12179,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1618351749;s:7:\"checked\";a:21:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:47:\"appointment-hour-booking/app-booking-plugin.php\";s:6:\"1.2.96\";s:37:\"booking-calendar/booking_calendar.php\";s:5:\"2.8.0\";s:51:\"bookly-responsive-appointment-booking-tool/main.php\";s:6:\"19.6.1\";s:37:\"disable-comments/disable-comments.php\";s:5:\"2.1.1\";s:25:\"duplicator/duplicator.php\";s:5:\"1.4.0\";s:23:\"elementor/elementor.php\";s:5:\"3.1.4\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:5:\"1.5.8\";s:25:\"embedpress/embedpress.php\";s:5:\"2.7.6\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:5:\"4.6.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:27:\"ninja-forms/ninja-forms.php\";s:5:\"3.5.3\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:5:\"4.3.0\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:6:\"4.0.13\";s:25:\"templately/templately.php\";s:5:\"1.2.1\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"5.5.0.1\";s:46:\"under-construction-page/under-construction.php\";s:4:\"3.88\";s:27:\"woocommerce/woocommerce.php\";s:5:\"4.9.2\";s:45:\"woocommerce-bookings/woocommerce-bookings.php\";s:7:\"1.15.22\";s:33:\"woo-bookings-calendar/wbclite.php\";s:6:\"1.0.28\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:5:\"2.2.0\";}s:8:\"response\";a:1:{s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"5.2.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.7\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:19:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"appointment-hour-booking/app-booking-plugin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/appointment-hour-booking\";s:4:\"slug\";s:24:\"appointment-hour-booking\";s:6:\"plugin\";s:47:\"appointment-hour-booking/app-booking-plugin.php\";s:11:\"new_version\";s:6:\"1.2.96\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/appointment-hour-booking/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/appointment-hour-booking.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/appointment-hour-booking/assets/icon-256x256.png?rev=1784135\";s:2:\"1x\";s:77:\"https://ps.w.org/appointment-hour-booking/assets/icon-128x128.png?rev=1784135\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/appointment-hour-booking/assets/banner-1544x500.png?rev=1788823\";s:2:\"1x\";s:79:\"https://ps.w.org/appointment-hour-booking/assets/banner-772x250.png?rev=1788823\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"booking-calendar/booking_calendar.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/booking-calendar\";s:4:\"slug\";s:16:\"booking-calendar\";s:6:\"plugin\";s:37:\"booking-calendar/booking_calendar.php\";s:11:\"new_version\";s:5:\"2.8.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/booking-calendar/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/booking-calendar.2.8.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/booking-calendar/assets/icon-128x128.png?rev=1307202\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/booking-calendar/assets/banner-772x250.jpg?rev=1756241\";}s:11:\"banners_rtl\";a:0:{}}s:51:\"bookly-responsive-appointment-booking-tool/main.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:56:\"w.org/plugins/bookly-responsive-appointment-booking-tool\";s:4:\"slug\";s:42:\"bookly-responsive-appointment-booking-tool\";s:6:\"plugin\";s:51:\"bookly-responsive-appointment-booking-tool/main.php\";s:11:\"new_version\";s:6:\"19.6.1\";s:3:\"url\";s:73:\"https://wordpress.org/plugins/bookly-responsive-appointment-booking-tool/\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/plugin/bookly-responsive-appointment-booking-tool.19.6.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:95:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/icon-128x128.png?rev=1005009\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:98:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/banner-1544x500.png?rev=1726755\";s:2:\"1x\";s:97:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/banner-772x250.png?rev=1726755\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"disable-comments/disable-comments.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/disable-comments\";s:4:\"slug\";s:16:\"disable-comments\";s:6:\"plugin\";s:37:\"disable-comments/disable-comments.php\";s:11:\"new_version\";s:5:\"2.1.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/disable-comments/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/disable-comments.2.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/disable-comments/assets/icon-256x256.png?rev=2509854\";s:2:\"1x\";s:69:\"https://ps.w.org/disable-comments/assets/icon-128x128.png?rev=2509854\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/disable-comments/assets/banner-1544x500.png?rev=2509854\";s:2:\"1x\";s:71:\"https://ps.w.org/disable-comments/assets/banner-772x250.png?rev=2509854\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/duplicator.1.4.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=2083921\";s:2:\"1x\";s:63:\"https://ps.w.org/duplicator/assets/icon-128x128.png?rev=2083921\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=2085472\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:5:\"1.5.8\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.5.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2308485\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2308485\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2308485\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2308485\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"embedpress/embedpress.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/embedpress\";s:4:\"slug\";s:10:\"embedpress\";s:6:\"plugin\";s:25:\"embedpress/embedpress.php\";s:11:\"new_version\";s:5:\"2.7.6\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/embedpress/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/embedpress.2.7.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/embedpress/assets/icon-256x256.png?rev=2501490\";s:2:\"1x\";s:63:\"https://ps.w.org/embedpress/assets/icon-128x128.png?rev=2501490\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/embedpress/assets/banner-1544x500.png?rev=2501490\";s:2:\"1x\";s:65:\"https://ps.w.org/embedpress/assets/banner-772x250.png?rev=2501490\";}s:11:\"banners_rtl\";a:0:{}}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:5:\"4.6.2\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=2285897\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=2285897\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.gif?rev=2495590\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.gif?rev=2495590\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{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:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"ninja-forms/ninja-forms.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/ninja-forms\";s:4:\"slug\";s:11:\"ninja-forms\";s:6:\"plugin\";s:27:\"ninja-forms/ninja-forms.php\";s:11:\"new_version\";s:5:\"3.5.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/ninja-forms/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/ninja-forms.3.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-256x256.png?rev=1649747\";s:2:\"1x\";s:64:\"https://ps.w.org/ninja-forms/assets/icon-128x128.png?rev=1649747\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/ninja-forms/assets/banner-1544x500.png?rev=2069024\";s:2:\"1x\";s:66:\"https://ps.w.org/ninja-forms/assets/banner-772x250.png?rev=2069024\";}s:11:\"banners_rtl\";a:0:{}}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:42:\"w.org/plugins/premium-addons-for-elementor\";s:4:\"slug\";s:28:\"premium-addons-for-elementor\";s:6:\"plugin\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:11:\"new_version\";s:5:\"4.3.0\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/premium-addons-for-elementor/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/premium-addons-for-elementor.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:81:\"https://ps.w.org/premium-addons-for-elementor/assets/icon-256x256.png?rev=2421900\";s:2:\"1x\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900\";s:3:\"svg\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-1544x500.jpg?rev=2421900\";s:2:\"1x\";s:83:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.jpg?rev=2421900\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:6:\"4.0.13\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/really-simple-ssl.4.0.13.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=2320223\";s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=2320228\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"templately/templately.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/templately\";s:4:\"slug\";s:10:\"templately\";s:6:\"plugin\";s:25:\"templately/templately.php\";s:11:\"new_version\";s:5:\"1.2.1\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/templately/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/templately.1.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/templately/assets/icon-256x256.gif?rev=2426368\";s:2:\"1x\";s:63:\"https://ps.w.org/templately/assets/icon-128x128.gif?rev=2426368\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/templately/assets/banner-1544x500.png?rev=2502333\";s:2:\"1x\";s:65:\"https://ps.w.org/templately/assets/banner-772x250.png?rev=2502333\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:7:\"5.5.0.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.5.0.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.png?rev=2259358\";s:2:\"1x\";s:64:\"https://ps.w.org/the-events-calendar/assets/icon.svg?rev=2259343\";s:3:\"svg\";s:64:\"https://ps.w.org/the-events-calendar/assets/icon.svg?rev=2259343\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}}s:46:\"under-construction-page/under-construction.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/under-construction-page\";s:4:\"slug\";s:23:\"under-construction-page\";s:6:\"plugin\";s:46:\"under-construction-page/under-construction.php\";s:11:\"new_version\";s:4:\"3.88\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/under-construction-page/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/under-construction-page.3.88.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/under-construction-page/assets/icon-256x256.gif?rev=2284849\";s:2:\"1x\";s:76:\"https://ps.w.org/under-construction-page/assets/icon-128x128.gif?rev=2284852\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/under-construction-page/assets/banner-1544x500.png?rev=1628376\";s:2:\"1x\";s:78:\"https://ps.w.org/under-construction-page/assets/banner-772x250.png?rev=1575797\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"woo-bookings-calendar/wbclite.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/woo-bookings-calendar\";s:4:\"slug\";s:21:\"woo-bookings-calendar\";s:6:\"plugin\";s:33:\"woo-bookings-calendar/wbclite.php\";s:11:\"new_version\";s:6:\"1.0.28\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/woo-bookings-calendar/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/woo-bookings-calendar.1.0.28.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/woo-bookings-calendar/assets/icon-128x128.png?rev=2049014\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:45:\"woocommerce-payments/woocommerce-payments.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-payments\";s:4:\"slug\";s:20:\"woocommerce-payments\";s:6:\"plugin\";s:45:\"woocommerce-payments/woocommerce-payments.php\";s:11:\"new_version\";s:5:\"2.2.0\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-payments/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/woocommerce-payments.2.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-256x256.png?rev=2429229\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-payments/assets/icon-128x128.png?rev=2429229\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-payments/assets/banner-1544x500.png?rev=2429229\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-payments/assets/banner-772x250.png?rev=2429229\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(12186,'_transient_timeout_wcpay_account_data','1618365133','no'),(12187,'_transient_wcpay_account_data','a:17:{s:10:\"account_id\";s:21:\"acct_1IKDaE2EFiGxn5AO\";s:5:\"email\";s:23:\"ekow@esselwebdesign.com\";s:20:\"live_publishable_key\";s:42:\"pk_live_iBIpeqzKOOx2Y8PFCRBfyMU000Q7xVG4Sn\";s:20:\"test_publishable_key\";s:107:\"pk_test_51ETDmyFuiXB5oUVxwSobQMW5Tno1GclIq7ePZWzLeW4q8oa7Zb8hI5VfwI5sNT5nXuKYinLukNvGCXmsQXAoDGHG00MqHqlYHR\";s:7:\"is_live\";b:1;s:24:\"has_pending_requirements\";b:1;s:24:\"has_overdue_requirements\";b:1;s:16:\"current_deadline\";i:1617913842;s:6:\"status\";s:10:\"restricted\";s:16:\"payments_enabled\";b:1;s:15:\"deposits_status\";s:8:\"disabled\";s:20:\"statement_descriptor\";s:13:\"ECO SOLUTIONS\";s:20:\"latest_tos_agreement\";a:3:{s:4:\"date\";s:19:\"2021-02-13 02:15:16\";s:6:\"source\";s:6:\"signup\";s:18:\"is_current_version\";b:1;}s:4:\"fees\";a:2:{s:4:\"base\";a:3:{s:15:\"percentage_rate\";d:0.0290000000000000014710455076283324160613119602203369140625;s:10:\"fixed_rate\";i:30;s:8:\"currency\";s:3:\"usd\";}s:8:\"discount\";a:0:{}}s:14:\"fraud_services\";a:2:{s:6:\"stripe\";a:0:{}s:4:\"sift\";a:2:{s:10:\"beacon_key\";s:10:\"affbdadb36\";s:18:\"sandbox_beacon_key\";s:10:\"6ad0ad748b\";}}s:16:\"store_currencies\";a:2:{s:7:\"default\";s:3:\"usd\";s:9:\"supported\";a:1:{i:0;s:3:\"usd\";}}s:7:\"country\";s:2:\"US\";}','no'),(12214,'_transient_timeout_wc_onboarding_product_data','1618460522','no');
INSERT INTO `wp_options` VALUES (12215,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 14 Apr 2021 04:22:01 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"11516\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-rq\";s:16:\"sea2 86 168 3113\";s:3:\"age\";s:1:\"1\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:4:\"body\";s:48131:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment method designed exclusively for WooCommerce, by WooCommerce. Securely accept major credit and debit cards on your site. View and manage your transactions within your WordPress dashboard.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Opayo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:48131:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment method designed exclusively for WooCommerce, by WooCommerce. Securely accept major credit and debit cards on your site. View and manage your transactions within your WordPress dashboard.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Opayo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:3:\"raw\";s:48768:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Wed, 14 Apr 2021 04:22:01 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 11516\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nContent-Encoding: gzip\r\nX-rq: sea2 86 168 3113\r\nAge: 1\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"The only payment method designed exclusively for WooCommerce, by WooCommerce. Securely accept major credit and debit cards on your site. View and manage your transactions within your WordPress dashboard.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads &amp; Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"&#36;249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay &amp; Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&amp;utm_source=woocommerce.com&amp;utm_medium=integration&amp;utm_campaign=woocommerce.com\",\"price\":\"&#36;0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"&#36;99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Print Invoices &amp; Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings &amp; product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"&#36;99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"&#36;0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products &amp; let customers request &amp; manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging &amp; dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced &amp; sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout &amp; pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"&#36;49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"&#36;49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"&#36;79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"&#36;99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Opayo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory &amp; order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"&#36;99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Wed, 14 Apr 2021 04:22:01 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"11516\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:4:\"x-rq\";a:1:{i:0;s:16:\"sea2 86 168 3113\";}s:3:\"age\";a:1:{i:0;s:1:\"1\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.100000000000000088817841970012523233890533447265625;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no'),(12218,'_transient_timeout_astra-theme-cron-test-ok','1618379102','no'),(12219,'_transient_astra-theme-cron-test-ok','1','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_wp_attached_file','woocommerce-placeholder.png'),(4,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,10,'_elementor_edit_mode','builder'),(6,10,'_elementor_template_type','kit'),(10,12,'_edit_lock','1611747219:1'),(11,12,'_edit_last','1'),(12,12,'_elementor_edit_mode','builder'),(13,12,'_elementor_template_type','wp-page'),(14,12,'_elementor_version','3.1.0'),(18,15,'_edit_lock','1614652547:1'),(19,15,'_edit_last','1'),(20,15,'site-sidebar-layout','no-sidebar'),(21,15,'site-content-layout','page-builder'),(22,15,'_elementor_edit_mode','builder'),(23,15,'theme-transparent-header-meta','default'),(24,15,'_elementor_template_type','wp-page'),(25,15,'_elementor_version','3.1.1'),(26,15,'_astra_content_layout_flag','disabled'),(27,15,'site-post-title','disabled'),(28,15,'ast-title-bar-display','disabled'),(29,15,'ast-featured-img','disabled'),(30,15,'_wp_page_template','default'),(31,15,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(32,15,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting Services across the country. This includes our UV Light Disinfecting in Conjuction with our CDC Disinfecting Program\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3e27be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0d55110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"183049c\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET BACK TO WORK\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e719244\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As America reopens, we will get your offices and facilities disinfected<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da8d3f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36818fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"CDC PROCEDURES\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9a14e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We GUARANTEE CDC Procedures are followed on every project we complete<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a2e9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe2043e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLEANED WITH LOVE\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ae50ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our cleaning\\/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(37,17,'_elementor_edit_mode','builder'),(38,17,'_elementor_template_type','wp-page'),(39,17,'_elementor_version','3.1.0'),(40,17,'_wp_page_template','default'),(41,17,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(42,17,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(44,18,'_elementor_edit_mode','builder'),(45,18,'_elementor_template_type','wp-page'),(46,18,'_elementor_version','3.1.0'),(47,18,'_wp_page_template','default'),(48,18,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(49,18,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(51,19,'_elementor_edit_mode','builder'),(52,19,'_elementor_template_type','wp-page'),(53,19,'_elementor_version','3.1.0'),(54,19,'_wp_page_template','default'),(55,19,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(56,19,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(72,21,'_elementor_edit_mode','builder'),(73,21,'_elementor_template_type','wp-page'),(74,21,'_elementor_version','3.1.0'),(75,21,'_wp_page_template','default'),(76,21,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(77,21,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(79,22,'_elementor_edit_mode','builder'),(80,22,'_elementor_template_type','wp-page'),(81,22,'_elementor_version','3.1.0'),(82,22,'_wp_page_template','default'),(83,22,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(84,22,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(86,23,'_elementor_edit_mode','builder'),(87,23,'_elementor_template_type','wp-page'),(88,23,'_elementor_version','3.1.0'),(89,23,'_wp_page_template','default'),(90,23,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(91,23,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(113,25,'_elementor_edit_mode','builder'),(114,25,'_elementor_template_type','wp-page'),(115,25,'_elementor_version','3.1.0'),(116,25,'_wp_page_template','default'),(117,25,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(118,25,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(120,26,'_elementor_edit_mode','builder'),(121,26,'_elementor_template_type','wp-page'),(122,26,'_elementor_version','3.1.0'),(123,26,'_wp_page_template','default'),(124,26,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(125,26,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(127,27,'_elementor_edit_mode','builder'),(128,27,'_elementor_template_type','wp-page'),(129,27,'_elementor_version','3.1.0'),(130,27,'_wp_page_template','default'),(131,27,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(132,27,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(136,28,'_elementor_edit_mode','builder'),(137,28,'_elementor_template_type','wp-page'),(138,28,'_elementor_version','3.1.0'),(139,28,'_wp_page_template','default'),(140,28,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(141,28,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(143,29,'_elementor_edit_mode','builder'),(144,29,'_elementor_template_type','wp-page'),(145,29,'_elementor_version','3.1.0'),(146,29,'_wp_page_template','default'),(147,29,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(148,29,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(150,30,'_elementor_edit_mode','builder'),(151,30,'_elementor_template_type','wp-page'),(152,30,'_elementor_version','3.1.0'),(153,30,'_wp_page_template','default'),(154,30,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(155,30,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(172,32,'_wp_attached_file','2021/01/transparent_overlay.png'),(173,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:31:\"2021/01/transparent_overlay.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"transparent_overlay-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"transparent_overlay-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(175,33,'_elementor_edit_mode','builder'),(176,33,'_elementor_template_type','wp-page'),(177,33,'_elementor_version','3.1.0'),(178,33,'_wp_page_template','default'),(179,33,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(180,33,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(182,34,'_elementor_edit_mode','builder'),(183,34,'_elementor_template_type','wp-page'),(184,34,'_elementor_version','3.1.0'),(185,34,'_wp_page_template','default'),(186,34,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(187,34,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"d211ff8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-play\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#66C010\",\"size\":{\"unit\":\"px\",\"size\":194,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(189,35,'_elementor_edit_mode','builder'),(190,35,'_elementor_template_type','wp-page'),(191,35,'_elementor_version','3.1.0'),(192,35,'_wp_page_template','default'),(193,35,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(194,35,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(212,37,'_elementor_edit_mode','builder'),(213,37,'_elementor_template_type','wp-page'),(214,37,'_elementor_version','3.1.0'),(215,37,'_wp_page_template','default'),(216,37,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(217,37,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(219,38,'_elementor_edit_mode','builder'),(220,38,'_elementor_template_type','wp-page'),(221,38,'_elementor_version','3.1.0'),(222,38,'_wp_page_template','default'),(223,38,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(224,38,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(226,39,'_elementor_edit_mode','builder'),(227,39,'_elementor_template_type','wp-page'),(228,39,'_elementor_version','3.1.0'),(229,39,'_wp_page_template','default'),(230,39,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(231,39,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(235,40,'_elementor_edit_mode','builder'),(236,40,'_elementor_template_type','wp-page'),(237,40,'_elementor_version','3.1.0'),(238,40,'_wp_page_template','default'),(239,40,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(240,40,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(242,41,'_elementor_edit_mode','builder'),(243,41,'_elementor_template_type','wp-page'),(244,41,'_elementor_version','3.1.0'),(245,41,'_wp_page_template','default'),(246,41,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(247,41,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(249,42,'_elementor_edit_mode','builder'),(250,42,'_elementor_template_type','wp-page'),(251,42,'_elementor_version','3.1.0'),(252,42,'_wp_page_template','default'),(253,42,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(254,42,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(258,43,'_edit_lock','1612281997:1'),(259,43,'_edit_last','1'),(260,43,'site-sidebar-layout','right-sidebar'),(261,43,'site-content-layout','boxed-container'),(262,43,'theme-transparent-header-meta','default'),(264,43,'_elementor_template_type','wp-page'),(265,43,'_elementor_version','3.1.1'),(266,43,'_astra_content_layout_flag','disabled'),(268,43,'ast-title-bar-display','disabled'),(269,43,'ast-featured-img','disabled'),(270,43,'_wp_page_template','elementor_header_footer'),(271,43,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(272,43,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-style: inherit;\\\">ECO Solutions&nbsp;<\\/strong><span style=\\\"font-style: inherit; font-weight: inherit;\\\">is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;<\\/span><span style=\\\"font-style: inherit; font-weight: inherit; color: rgb(102, 192, 16);\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><br><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;<span style=\\\"color:#66c010\\\">CDC<\\/span>&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(286,52,'_elementor_edit_mode','builder'),(287,52,'_elementor_template_type','wp-page'),(288,52,'_elementor_version','3.1.0'),(289,52,'_wp_page_template','default'),(290,52,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(291,52,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(293,53,'_elementor_edit_mode','builder'),(294,53,'_elementor_template_type','wp-page'),(295,53,'_elementor_version','3.1.0'),(296,53,'_wp_page_template','default'),(297,53,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(298,53,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">TruElectrostatic Technology<\\/span><br><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Free Consultation<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Health-E Certification<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(300,54,'_elementor_edit_mode','builder'),(301,54,'_elementor_template_type','wp-page'),(302,54,'_elementor_version','3.1.0'),(303,54,'_wp_page_template','default'),(304,54,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(305,54,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(309,55,'_elementor_edit_mode','builder'),(310,55,'_elementor_template_type','wp-page'),(311,55,'_elementor_version','3.1.0'),(312,55,'_wp_page_template','default'),(313,55,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(314,55,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(316,56,'_elementor_edit_mode','builder'),(317,56,'_elementor_template_type','wp-page'),(318,56,'_elementor_version','3.1.0'),(319,56,'_wp_page_template','default'),(320,56,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(321,56,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">90-Day BIOPROTECT RTU protective coating<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Day Porter available<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Flexible scheduling<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(323,57,'_elementor_edit_mode','builder'),(324,57,'_elementor_template_type','wp-page'),(325,57,'_elementor_version','3.1.0'),(326,57,'_wp_page_template','default'),(327,57,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(328,57,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(332,58,'_elementor_edit_mode','builder'),(333,58,'_elementor_template_type','wp-page'),(334,58,'_elementor_version','3.1.0'),(335,58,'_wp_page_template','default'),(336,58,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(337,58,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(339,59,'_elementor_edit_mode','builder'),(340,59,'_elementor_template_type','wp-page'),(341,59,'_elementor_version','3.1.0'),(342,59,'_wp_page_template','default'),(343,59,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(344,59,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-style: inherit; font-weight: inherit; color: var( --e-global-color-text );\\\">100% Satisfaction Guaranteed<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(346,60,'_elementor_edit_mode','builder'),(347,60,'_elementor_template_type','wp-page'),(348,60,'_elementor_version','3.1.0'),(349,60,'_wp_page_template','default'),(350,60,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(351,60,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(355,61,'_elementor_edit_mode','builder'),(356,61,'_elementor_template_type','wp-page'),(357,61,'_elementor_version','3.1.0'),(358,61,'_wp_page_template','default'),(359,61,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(360,61,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(362,62,'_elementor_edit_mode','builder'),(363,62,'_elementor_template_type','wp-page'),(364,62,'_elementor_version','3.1.0'),(365,62,'_wp_page_template','default'),(366,62,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(367,62,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(369,63,'_elementor_edit_mode','builder'),(370,63,'_elementor_template_type','wp-page'),(371,63,'_elementor_version','3.1.0'),(372,63,'_wp_page_template','default'),(373,63,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(374,63,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(378,64,'_wp_attached_file','2021/01/disinfecting-background-overlay-edssnow-scaled.jpg'),(379,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:58:\"2021/01/disinfecting-background-overlay-edssnow-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"disinfecting-background-overlay-edssnow-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:51:\"disinfecting-background-overlay-edssnow-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"disinfecting-background-overlay-edssnow.jpg\";}'),(391,66,'_wp_attached_file','2021/01/disinfecting-background-edssnow.jpg'),(392,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:43:\"2021/01/disinfecting-background-edssnow.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"disinfecting-background-edssnow-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"disinfecting-background-edssnow-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(393,67,'_elementor_edit_mode','builder'),(394,67,'_elementor_template_type','wp-page'),(395,67,'_elementor_version','3.1.0'),(396,67,'_wp_page_template','default'),(397,67,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(398,67,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(400,68,'_elementor_edit_mode','builder'),(401,68,'_elementor_template_type','wp-page'),(402,68,'_elementor_version','3.1.0'),(403,68,'_wp_page_template','default'),(404,68,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(405,68,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(407,69,'_elementor_edit_mode','builder'),(408,69,'_elementor_template_type','wp-page'),(409,69,'_elementor_version','3.1.0'),(410,69,'_wp_page_template','default'),(411,69,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(412,69,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(416,70,'_elementor_edit_mode','builder'),(417,70,'_elementor_template_type','wp-page'),(418,70,'_elementor_version','3.1.0'),(419,70,'_wp_page_template','default'),(420,70,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(421,70,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(423,71,'_elementor_edit_mode','builder'),(424,71,'_elementor_template_type','wp-page'),(425,71,'_elementor_version','3.1.0'),(426,71,'_wp_page_template','default'),(427,71,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(428,71,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(430,72,'_elementor_edit_mode','builder'),(431,72,'_elementor_template_type','wp-page'),(432,72,'_elementor_version','3.1.0'),(433,72,'_wp_page_template','default'),(434,72,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(435,72,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(439,73,'_elementor_edit_mode','builder'),(440,73,'_elementor_template_type','wp-page'),(441,73,'_elementor_version','3.1.0'),(442,73,'_wp_page_template','default'),(443,73,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(444,73,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(446,74,'_elementor_edit_mode','builder'),(447,74,'_elementor_template_type','wp-page'),(448,74,'_elementor_version','3.1.0'),(449,74,'_wp_page_template','default'),(450,74,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(451,74,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(453,75,'_elementor_edit_mode','builder'),(454,75,'_elementor_template_type','wp-page'),(455,75,'_elementor_version','3.1.0'),(456,75,'_wp_page_template','default'),(457,75,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (458,75,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(462,76,'_elementor_edit_mode','builder'),(463,76,'_elementor_template_type','wp-page'),(464,76,'_elementor_version','3.1.0'),(465,76,'_wp_page_template','default'),(466,76,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(467,76,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(469,77,'_elementor_edit_mode','builder'),(470,77,'_elementor_template_type','wp-page'),(471,77,'_elementor_version','3.1.0'),(472,77,'_wp_page_template','default'),(473,77,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(474,77,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(476,78,'_elementor_edit_mode','builder'),(477,78,'_elementor_template_type','wp-page'),(478,78,'_elementor_version','3.1.0'),(479,78,'_wp_page_template','default'),(480,78,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(481,78,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(485,79,'_elementor_edit_mode','builder'),(486,79,'_elementor_template_type','wp-page'),(487,79,'_elementor_version','3.1.0'),(488,79,'_wp_page_template','default'),(489,79,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(490,79,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(492,80,'_elementor_edit_mode','builder'),(493,80,'_elementor_template_type','wp-page'),(494,80,'_elementor_version','3.1.0'),(495,80,'_wp_page_template','default'),(496,80,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(497,80,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(499,81,'_elementor_edit_mode','builder'),(500,81,'_elementor_template_type','wp-page'),(501,81,'_elementor_version','3.1.0'),(502,81,'_wp_page_template','default'),(503,81,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(504,81,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(508,82,'_edit_lock','1613352861:1'),(509,82,'_edit_last','1'),(510,82,'site-sidebar-layout','right-sidebar'),(511,82,'site-content-layout','boxed-container'),(512,82,'theme-transparent-header-meta','default'),(514,82,'_elementor_template_type','wp-page'),(515,82,'_elementor_version','3.1.1'),(516,82,'_astra_content_layout_flag','disabled'),(518,82,'ast-title-bar-display','disabled'),(519,82,'ast-featured-img','disabled'),(520,84,'_elementor_edit_mode','builder'),(521,84,'_elementor_template_type','wp-page'),(522,84,'_elementor_version','3.1.0'),(523,85,'_elementor_edit_mode','builder'),(524,85,'_elementor_template_type','wp-page'),(525,85,'_elementor_version','3.1.0'),(526,82,'_wp_page_template','elementor_header_footer'),(527,82,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(528,82,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><\\/p>\\n<p><br><\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\\n<p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p>\\n<p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p>\\n<p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(529,86,'_elementor_edit_mode','builder'),(530,86,'_elementor_template_type','wp-page'),(531,86,'_elementor_version','3.1.0'),(532,86,'_wp_page_template','default'),(533,86,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(534,86,'_elementor_data','[{\"id\":\"4f626f2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c80865e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f4c615\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p>NOT ALL SPRAYERS ARE THE SAME!<\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>\\u00a0<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. Coulomb\\u2019s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(545,88,'_wp_attached_file','2021/01/epa-fda-edssnow.png'),(546,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2872;s:6:\"height\";i:1514;s:4:\"file\";s:27:\"2021/01/epa-fda-edssnow.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-300x158.png\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"epa-fda-edssnow-1024x540.png\";s:5:\"width\";i:1024;s:6:\"height\";i:540;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-768x405.png\";s:5:\"width\";i:768;s:6:\"height\";i:405;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"epa-fda-edssnow-1536x810.png\";s:5:\"width\";i:1536;s:6:\"height\";i:810;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"epa-fda-edssnow-2048x1080.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"epa-fda-edssnow-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-600x316.png\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-600x316.png\";s:5:\"width\";i:600;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"epa-fda-edssnow-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(549,89,'_wp_attached_file','2021/01/disinfecting-edssnow.png'),(550,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2880;s:6:\"height\";i:1510;s:4:\"file\";s:32:\"2021/01/disinfecting-edssnow.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"disinfecting-edssnow-1024x537.png\";s:5:\"width\";i:1024;s:6:\"height\";i:537;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-768x403.png\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"disinfecting-edssnow-1536x805.png\";s:5:\"width\";i:1536;s:6:\"height\";i:805;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:34:\"disinfecting-edssnow-2048x1074.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1074;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"disinfecting-edssnow-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-600x315.png\";s:5:\"width\";i:600;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-600x315.png\";s:5:\"width\";i:600;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"disinfecting-edssnow-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(553,90,'_elementor_edit_mode','builder'),(554,90,'_elementor_template_type','wp-page'),(555,90,'_elementor_version','3.1.0'),(556,90,'_wp_page_template','default'),(557,90,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(558,90,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(560,91,'_elementor_edit_mode','builder'),(561,91,'_elementor_template_type','wp-page'),(562,91,'_elementor_version','3.1.0'),(563,91,'_wp_page_template','default'),(564,91,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(565,91,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(567,92,'_elementor_edit_mode','builder'),(568,92,'_elementor_template_type','wp-page'),(569,92,'_elementor_version','3.1.0'),(570,92,'_wp_page_template','default'),(571,92,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(572,92,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li>BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li>All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li>High pressure Steam<\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p><p><strong>We Use Environmentally Safe Disinfectants registered by the EPA list N, FDA, and the WTO. We follow the updated CDC guidelines for Disinfecting and Sanitizing to kill the Coronavirus that causes Covid-19, SARS and MERS and more. <\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(576,93,'_elementor_edit_mode','builder'),(577,93,'_elementor_template_type','wp-page'),(578,93,'_elementor_version','3.1.0'),(579,93,'_wp_page_template','default'),(580,93,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(581,93,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li>BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li>All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li>High pressure Steam<\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p><p><strong>We Use Environmentally Safe Disinfectants registered by the EPA list N, FDA, and the WTO. We follow the updated CDC guidelines for Disinfecting and Sanitizing to kill the Coronavirus that causes Covid-19, SARS and MERS and more. <\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(583,94,'_elementor_edit_mode','builder'),(584,94,'_elementor_template_type','wp-page'),(585,94,'_elementor_version','3.1.0'),(586,94,'_wp_page_template','default'),(587,94,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(588,94,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li>WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li>BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li>All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li>High pressure Steam<\\/li><\\/ul>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p><p><strong>We Use Environmentally Safe Disinfectants registered by the EPA list N, FDA, and the WTO. We follow the updated CDC guidelines for Disinfecting and Sanitizing to kill the Coronavirus that causes Covid-19, SARS and MERS and more. <\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(590,95,'_elementor_edit_mode','builder'),(591,95,'_elementor_template_type','wp-page'),(592,95,'_elementor_version','3.1.0'),(593,95,'_wp_page_template','default'),(594,95,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(595,95,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(599,96,'_elementor_edit_mode','builder'),(600,96,'_elementor_template_type','wp-page'),(601,96,'_elementor_version','3.1.0'),(602,96,'_wp_page_template','default'),(603,96,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(604,96,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(606,97,'_elementor_edit_mode','builder'),(607,97,'_elementor_template_type','wp-page'),(608,97,'_elementor_version','3.1.0'),(609,97,'_wp_page_template','default'),(610,97,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(611,97,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.70000000000000017763568394002504646778106689453125,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(613,98,'_elementor_edit_mode','builder'),(614,98,'_elementor_template_type','wp-page'),(615,98,'_elementor_version','3.1.0'),(616,98,'_wp_page_template','default'),(617,98,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(618,98,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(631,101,'_wp_attached_file','2021/01/disinfecting-background-overlay-edssnow-1-scaled.jpg'),(632,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:60:\"2021/01/disinfecting-background-overlay-edssnow-1-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"disinfecting-background-overlay-edssnow-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:55:\"disinfecting-background-overlay-edssnow-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:55:\"disinfecting-background-overlay-edssnow-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:53:\"disinfecting-background-overlay-edssnow-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"disinfecting-background-overlay-edssnow-1.jpg\";}'),(634,102,'_elementor_edit_mode','builder'),(635,102,'_elementor_template_type','wp-page'),(636,102,'_elementor_version','3.1.0'),(637,102,'_wp_page_template','default'),(638,102,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(639,102,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(641,103,'_elementor_edit_mode','builder'),(642,103,'_elementor_template_type','wp-page'),(643,103,'_elementor_version','3.1.0'),(644,103,'_wp_page_template','default'),(645,103,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(646,103,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(648,104,'_elementor_edit_mode','builder'),(649,104,'_elementor_template_type','wp-page'),(650,104,'_elementor_version','3.1.0'),(651,104,'_wp_page_template','default'),(652,104,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(653,104,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(657,105,'_elementor_edit_mode','builder'),(658,105,'_elementor_template_type','wp-page'),(659,105,'_elementor_version','3.1.0'),(660,105,'_wp_page_template','default'),(661,105,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(662,105,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(664,106,'_elementor_edit_mode','builder'),(665,106,'_elementor_template_type','wp-page'),(666,106,'_elementor_version','3.1.0'),(667,106,'_wp_page_template','default'),(668,106,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(669,106,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(671,107,'_elementor_edit_mode','builder'),(672,107,'_elementor_template_type','wp-page'),(673,107,'_elementor_version','3.1.0'),(674,107,'_wp_page_template','default'),(675,107,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(676,107,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotel\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"show_divider\":\"yes\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(680,108,'_elementor_edit_mode','builder'),(681,108,'_elementor_template_type','wp-page'),(682,108,'_elementor_version','3.1.0'),(683,108,'_wp_page_template','default'),(684,108,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(685,108,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotel\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"show_divider\":\"yes\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(687,109,'_elementor_edit_mode','builder'),(688,109,'_elementor_template_type','wp-page'),(689,109,'_elementor_version','3.1.0'),(690,109,'_wp_page_template','default'),(691,109,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(692,109,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotel\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"show_divider\":\"yes\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(694,110,'_elementor_edit_mode','builder'),(695,110,'_elementor_template_type','wp-page'),(696,110,'_elementor_version','3.1.0'),(697,110,'_wp_page_template','default'),(698,110,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(699,110,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(703,111,'_elementor_edit_mode','builder'),(704,111,'_elementor_template_type','wp-page'),(705,111,'_elementor_version','3.1.0'),(706,111,'_wp_page_template','default'),(707,111,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (708,111,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(710,112,'_elementor_edit_mode','builder'),(711,112,'_elementor_template_type','wp-page'),(712,112,'_elementor_version','3.1.0'),(713,112,'_wp_page_template','default'),(714,112,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(715,112,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(717,113,'_elementor_edit_mode','builder'),(718,113,'_elementor_template_type','wp-page'),(719,113,'_elementor_version','3.1.0'),(720,113,'_wp_page_template','default'),(721,113,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(722,113,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(726,114,'_elementor_edit_mode','builder'),(727,114,'_elementor_template_type','wp-page'),(728,114,'_elementor_version','3.1.0'),(729,114,'_wp_page_template','default'),(730,114,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(731,114,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(733,115,'_elementor_edit_mode','builder'),(734,115,'_elementor_template_type','wp-page'),(735,115,'_elementor_version','3.1.0'),(736,115,'_wp_page_template','default'),(737,115,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(738,115,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(740,116,'_elementor_edit_mode','builder'),(741,116,'_elementor_template_type','wp-page'),(742,116,'_elementor_version','3.1.0'),(743,116,'_wp_page_template','default'),(744,116,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(745,116,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(752,117,'_elementor_edit_mode','builder'),(753,117,'_elementor_template_type','wp-page'),(754,117,'_elementor_version','3.1.0'),(755,117,'_wp_page_template','default'),(756,117,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(757,117,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(759,118,'_elementor_edit_mode','builder'),(760,118,'_elementor_template_type','wp-page'),(761,118,'_elementor_version','3.1.0'),(762,118,'_wp_page_template','default'),(763,118,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(764,118,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"premium_video_box_mute\":\"yes\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(766,119,'_elementor_edit_mode','builder'),(767,119,'_elementor_template_type','wp-page'),(768,119,'_elementor_version','3.1.0'),(769,119,'_wp_page_template','default'),(770,119,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(771,119,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(774,120,'_edit_last','1'),(775,120,'_edit_lock','1613629232:1'),(776,120,'_wp_page_template','default'),(777,120,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(778,120,'ehf_target_exclude_locations','a:0:{}'),(779,120,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(780,120,'ehf_template_type','type_footer'),(781,120,'site-sidebar-layout','no-sidebar'),(782,120,'site-content-layout','page-builder'),(783,120,'theme-transparent-header-meta','default'),(784,120,'_elementor_edit_mode','builder'),(785,120,'_elementor_template_type','wp-post'),(786,120,'_elementor_version','3.1.1'),(787,120,'_astra_content_layout_flag','disabled'),(788,120,'site-post-title','disabled'),(789,120,'ast-title-bar-display','disabled'),(790,120,'ast-featured-img','disabled'),(792,122,'_elementor_edit_mode','builder'),(793,122,'_elementor_template_type','kit'),(795,10,'_wp_page_template','default'),(796,10,'_elementor_page_settings','a:2:{s:9:\"site_name\";s:13:\"Eco Solutions\";s:16:\"site_description\";s:61:\"Commercial and Residential Coronavirus Disinfecting Solutions\";}'),(806,124,'_wp_attached_file','2021/02/Eco-Solution-Logo_transparent.png'),(807,124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:7495;s:6:\"height\";i:4297;s:4:\"file\";s:41:\"2021/02/Eco-Solution-Logo_transparent.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Eco-Solution-Logo_transparent-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"Eco-Solution-Logo_transparent-1536x881.png\";s:5:\"width\";i:1536;s:6:\"height\";i:881;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"Eco-Solution-Logo_transparent-2048x1174.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1174;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-600x344.png\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-600x344.png\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"Eco-Solution-Logo_transparent-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"ast-logo-size\";a:4:{s:4:\"file\";s:40:\"Eco-Solution-Logo_transparent-150x86.png\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(808,125,'_wp_page_template','default'),(809,125,'_elementor_edit_mode','builder'),(810,125,'_elementor_template_type','wp-post'),(811,125,'_elementor_version','3.1.1'),(813,126,'_wp_page_template','default'),(814,126,'_elementor_edit_mode','builder'),(815,126,'_elementor_template_type','wp-post'),(816,126,'_elementor_version','3.1.1'),(818,120,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(819,120,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We look forward to working with you.<br>Our associates are standing by.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright &copy; 2021 Eco Solutions LLC | Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(820,127,'_wp_page_template','default'),(821,127,'_elementor_edit_mode','builder'),(822,127,'_elementor_template_type','wp-post'),(823,127,'_elementor_version','3.1.1'),(825,127,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(826,127,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607 Little Rock, Ark 72223<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(829,128,'_wp_page_template','default'),(830,128,'_elementor_edit_mode','builder'),(831,128,'_elementor_template_type','wp-post'),(832,128,'_elementor_version','3.1.1'),(833,128,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(834,128,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607 Little Rock, Ark 72223<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(836,129,'_wp_page_template','default'),(837,129,'_elementor_edit_mode','builder'),(838,129,'_elementor_template_type','wp-post'),(839,129,'_elementor_version','3.1.1'),(840,129,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(841,129,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607 Little Rock, Ark 72223<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(843,130,'_wp_page_template','default'),(844,130,'_elementor_edit_mode','builder'),(845,130,'_elementor_template_type','wp-post'),(846,130,'_elementor_version','3.1.1'),(847,130,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(848,130,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607 Little Rock, Ark 72223<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(851,131,'_wp_page_template','default'),(852,131,'_elementor_edit_mode','builder'),(853,131,'_elementor_template_type','wp-post'),(854,131,'_elementor_version','3.1.1'),(855,131,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(856,131,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607 Little Rock, Ark 72223<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(857,132,'_wp_page_template','default'),(858,132,'_elementor_edit_mode','builder'),(859,132,'_elementor_template_type','wp-post'),(860,132,'_elementor_version','3.1.1'),(861,132,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(862,132,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607 Little Rock, Ark 72223<\\/p><p>\\u00a0<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(863,133,'_wp_page_template','default'),(864,133,'_elementor_edit_mode','builder'),(865,133,'_elementor_template_type','wp-post'),(866,133,'_elementor_version','3.1.1'),(867,133,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(868,133,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(873,135,'_wp_attached_file','2021/02/cropped-Eco-Solution-Logo_transparent.png'),(874,135,'_wp_attachment_context','site-icon'),(875,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:49:\"2021/02/cropped-Eco-Solution-Logo_transparent.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:49:\"cropped-Eco-Solution-Logo_transparent-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:47:\"cropped-Eco-Solution-Logo_transparent-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(878,137,'_wp_page_template','default'),(879,137,'_elementor_edit_mode','builder'),(880,137,'_elementor_template_type','wp-post'),(881,137,'_elementor_version','3.1.1'),(882,137,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(883,137,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(885,138,'_wp_page_template','default'),(886,138,'_elementor_edit_mode','builder'),(887,138,'_elementor_template_type','wp-post'),(888,138,'_elementor_version','3.1.1'),(889,138,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(890,138,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(892,139,'_wp_page_template','default'),(893,139,'_elementor_edit_mode','builder'),(894,139,'_elementor_template_type','wp-post'),(895,139,'_elementor_version','3.1.1'),(896,139,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(897,139,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<\\/p><p>Little Rock, Ark 72223<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(901,140,'_wp_page_template','default'),(902,140,'_elementor_edit_mode','builder'),(903,140,'_elementor_template_type','wp-post'),(904,140,'_elementor_version','3.1.1'),(905,140,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(906,140,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<\\/p><p>Little Rock, Ark 72223<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(908,141,'_wp_page_template','default'),(909,141,'_elementor_edit_mode','builder'),(910,141,'_elementor_template_type','wp-post'),(911,141,'_elementor_version','3.1.1'),(912,141,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(913,141,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<\\/p><p>Little Rock, Ark 72223<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(915,142,'_wp_page_template','default'),(916,142,'_elementor_edit_mode','builder'),(917,142,'_elementor_template_type','wp-post'),(918,142,'_elementor_version','3.1.1'),(919,142,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(920,142,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(924,143,'_wp_page_template','default'),(925,143,'_elementor_edit_mode','builder'),(926,143,'_elementor_template_type','wp-post'),(927,143,'_elementor_version','3.1.1'),(928,143,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(929,143,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(931,144,'_wp_page_template','default'),(932,144,'_elementor_edit_mode','builder'),(933,144,'_elementor_template_type','wp-post'),(934,144,'_elementor_version','3.1.1'),(935,144,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(936,144,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(938,145,'_wp_page_template','default'),(939,145,'_elementor_edit_mode','builder'),(940,145,'_elementor_template_type','wp-post'),(941,145,'_elementor_version','3.1.1'),(942,145,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(943,145,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(947,146,'_elementor_edit_mode','builder'),(948,146,'_elementor_template_type','wp-page'),(949,146,'_elementor_version','3.1.1'),(950,146,'_wp_page_template','default'),(951,146,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(952,146,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(954,147,'_elementor_edit_mode','builder'),(955,147,'_elementor_template_type','wp-page'),(956,147,'_elementor_version','3.1.1'),(957,147,'_wp_page_template','default'),(958,147,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(959,147,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(961,148,'_elementor_edit_mode','builder'),(962,148,'_elementor_template_type','wp-page'),(963,148,'_elementor_version','3.1.1'),(964,148,'_wp_page_template','default'),(965,148,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(966,148,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(969,149,'_elementor_edit_mode','builder'),(970,149,'_elementor_template_type','wp-page'),(971,149,'_elementor_version','3.1.1'),(972,149,'_wp_page_template','default'),(973,149,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(974,149,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(975,150,'_elementor_edit_mode','builder'),(976,150,'_elementor_template_type','wp-page'),(977,150,'_elementor_version','3.1.1'),(978,150,'_wp_page_template','default'),(979,150,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(980,150,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false}]'),(981,151,'_elementor_edit_mode','builder'),(982,151,'_elementor_template_type','wp-page'),(983,151,'_elementor_version','3.1.1'),(984,151,'_wp_page_template','default'),(985,151,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(986,151,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(988,152,'_elementor_edit_mode','builder'),(989,152,'_elementor_template_type','wp-page'),(990,152,'_elementor_version','3.1.1'),(991,152,'_wp_page_template','default'),(992,152,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(993,152,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(994,153,'_elementor_edit_mode','builder'),(995,153,'_elementor_template_type','wp-page'),(996,153,'_elementor_version','3.1.1'),(997,153,'_wp_page_template','default'),(998,153,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(999,153,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1000,154,'_elementor_edit_mode','builder'),(1001,154,'_elementor_template_type','wp-page'),(1002,154,'_elementor_version','3.1.1'),(1003,154,'_wp_page_template','default'),(1004,154,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1005,154,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1008,155,'_elementor_edit_mode','builder'),(1009,155,'_elementor_template_type','wp-page'),(1010,155,'_elementor_version','3.1.1'),(1011,155,'_wp_page_template','default'),(1012,155,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1013,155,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1015,156,'_elementor_edit_mode','builder'),(1016,156,'_elementor_template_type','wp-page'),(1017,156,'_elementor_version','3.1.1'),(1018,156,'_wp_page_template','default'),(1019,156,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1020,156,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1022,157,'_elementor_edit_mode','builder'),(1023,157,'_elementor_template_type','wp-page'),(1024,157,'_elementor_version','3.1.1'),(1025,157,'_wp_page_template','default'),(1026,157,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1027,157,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1032,159,'_edit_lock','1614652544:1'),(1033,159,'_edit_last','1'),(1034,159,'site-sidebar-layout','no-sidebar'),(1035,159,'_elementor_edit_mode','builder'),(1036,159,'site-content-layout','page-builder'),(1037,159,'theme-transparent-header-meta','default'),(1038,159,'_elementor_template_type','wp-page'),(1039,159,'_elementor_version','3.1.1'),(1040,159,'_astra_content_layout_flag','disabled'),(1041,159,'site-post-title','disabled'),(1042,159,'ast-title-bar-display','disabled'),(1043,159,'ast-featured-img','disabled'),(1044,159,'_wp_page_template','default'),(1045,159,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1046,159,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Dinfecting Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1047,161,'_elementor_edit_mode','builder'),(1048,161,'_elementor_template_type','wp-page'),(1049,161,'_elementor_version','3.1.1'),(1050,161,'_wp_page_template','default'),(1051,161,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1052,161,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-rocketchat\",\"library\":\"fa-brands\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"f9c1776\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1053,162,'_elementor_edit_mode','builder'),(1054,162,'_elementor_template_type','wp-page'),(1055,162,'_elementor_version','3.1.1'),(1056,162,'_wp_page_template','default'),(1057,162,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (1058,162,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fab fa-rocketchat\",\"library\":\"fa-brands\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"f9c1776\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1059,163,'_elementor_edit_mode','builder'),(1060,163,'_elementor_template_type','wp-page'),(1061,163,'_elementor_version','3.1.1'),(1062,163,'_wp_page_template','default'),(1063,163,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1064,163,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1067,164,'_elementor_edit_mode','builder'),(1068,164,'_elementor_template_type','wp-page'),(1069,164,'_elementor_version','3.1.1'),(1070,164,'_wp_page_template','default'),(1071,164,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1072,164,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1074,165,'_elementor_edit_mode','builder'),(1075,165,'_elementor_template_type','wp-page'),(1076,165,'_elementor_version','3.1.1'),(1077,165,'_wp_page_template','default'),(1078,165,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1079,165,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1081,166,'_elementor_edit_mode','builder'),(1082,166,'_elementor_template_type','wp-page'),(1083,166,'_elementor_version','3.1.1'),(1084,166,'_wp_page_template','default'),(1085,166,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1086,166,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1099,168,'_elementor_edit_mode','builder'),(1100,168,'_elementor_template_type','wp-page'),(1101,168,'_elementor_version','3.1.1'),(1102,168,'_wp_page_template','default'),(1103,168,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1104,168,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1106,169,'_elementor_edit_mode','builder'),(1107,169,'_elementor_template_type','wp-page'),(1108,169,'_elementor_version','3.1.1'),(1109,169,'_wp_page_template','default'),(1110,169,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1111,169,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1113,170,'_elementor_edit_mode','builder'),(1114,170,'_elementor_template_type','wp-page'),(1115,170,'_elementor_version','3.1.1'),(1116,170,'_wp_page_template','elementor_theme'),(1117,170,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1118,170,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1133,172,'_elementor_edit_mode','builder'),(1134,172,'_elementor_template_type','wp-page'),(1135,172,'_elementor_version','3.1.1'),(1136,172,'_wp_page_template','elementor_theme'),(1137,172,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1138,172,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1139,173,'_elementor_edit_mode','builder'),(1140,173,'_elementor_template_type','wp-page'),(1141,173,'_elementor_version','3.1.1'),(1142,173,'_wp_page_template','elementor_theme'),(1143,173,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1144,173,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1146,174,'_elementor_edit_mode','builder'),(1147,174,'_elementor_template_type','wp-page'),(1148,174,'_elementor_version','3.1.1'),(1149,174,'_wp_page_template','default'),(1150,174,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1151,174,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1155,175,'_menu_item_type','post_type'),(1156,175,'_menu_item_menu_item_parent','0'),(1157,175,'_menu_item_object_id','15'),(1158,175,'_menu_item_object','page'),(1159,175,'_menu_item_target',''),(1160,175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1161,175,'_menu_item_xfn',''),(1162,175,'_menu_item_url',''),(1163,176,'_menu_item_type','post_type'),(1164,176,'_menu_item_menu_item_parent','0'),(1165,176,'_menu_item_object_id','82'),(1166,176,'_menu_item_object','page'),(1167,176,'_menu_item_target',''),(1168,176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1169,176,'_menu_item_xfn',''),(1170,176,'_menu_item_url',''),(1173,178,'_menu_item_type','post_type'),(1174,178,'_menu_item_menu_item_parent','0'),(1175,178,'_menu_item_object_id','43'),(1176,178,'_menu_item_object','page'),(1177,178,'_menu_item_target',''),(1178,178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1179,178,'_menu_item_xfn',''),(1180,178,'_menu_item_url',''),(1185,181,'_menu_item_type','post_type'),(1186,181,'_menu_item_menu_item_parent','0'),(1187,181,'_menu_item_object_id','159'),(1188,181,'_menu_item_object','page'),(1189,181,'_menu_item_target',''),(1190,181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1191,181,'_menu_item_xfn',''),(1192,181,'_menu_item_url',''),(1195,182,'_edit_lock','1612220771:1'),(1196,182,'_elementor_edit_mode','builder'),(1197,182,'_elementor_template_type','wp-page'),(1198,182,'_elementor_version','3.1.1'),(1199,182,'_astra_content_layout_flag','disabled'),(1200,182,'site-post-title','disabled'),(1201,182,'ast-title-bar-display','disabled'),(1202,182,'ast-featured-img','disabled'),(1203,182,'site-content-layout','page-builder'),(1204,182,'site-sidebar-layout','no-sidebar'),(1205,182,'_wp_page_template','default'),(1206,182,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1207,182,'_elementor_data','[{\"id\":\"37e8087\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0d3e9ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"010b027\",\"elType\":\"widget\",\"settings\":{\"eael_infobox_title\":\"This is an icon box\",\"infobox_button_text\":\"Click Me!\"},\"elements\":[],\"widgetType\":\"eael-info-box\"}],\"isInner\":false}],\"isInner\":false}]'),(1215,185,'_edit_last','1'),(1216,185,'_edit_lock','1612907183:1'),(1217,185,'total_sales','0'),(1218,185,'_tax_status','taxable'),(1219,185,'_tax_class',''),(1220,185,'_manage_stock','no'),(1221,185,'_backorders','no'),(1222,185,'_sold_individually','no'),(1223,185,'_virtual','no'),(1224,185,'_downloadable','no'),(1225,185,'_download_limit','-1'),(1226,185,'_download_expiry','-1'),(1227,185,'_stock',NULL),(1228,185,'_stock_status','instock'),(1229,185,'_wc_average_rating','0'),(1230,185,'_wc_review_count','0'),(1231,185,'_has_additional_costs',NULL),(1232,185,'_wc_booking_apply_adjacent_buffer',''),(1233,185,'_wc_booking_availability','a:1:{i:0;a:5:{s:4:\"type\";s:4:\"time\";s:8:\"bookable\";s:3:\"yes\";s:8:\"priority\";i:1;s:4:\"from\";s:5:\"07:00\";s:2:\"to\";s:5:\"19:00\";}}'),(1234,185,'_wc_booking_block_cost','0'),(1235,185,'_wc_booking_buffer_period','1'),(1236,185,'_wc_booking_calendar_display_mode','always_visible'),(1237,185,'_wc_booking_cancel_limit_unit','day'),(1238,185,'_wc_booking_cancel_limit','1'),(1239,185,'_wc_booking_check_availability_against',''),(1240,185,'_wc_booking_cost','0'),(1241,185,'_wc_booking_default_date_availability','available'),(1242,185,'_wc_booking_duration_type','fixed'),(1243,185,'_wc_booking_duration_unit','hour'),(1244,185,'_wc_booking_duration','3'),(1245,185,'_wc_booking_enable_range_picker',''),(1246,185,'_wc_booking_first_block_time','07:00'),(1247,185,'_wc_booking_has_person_types',''),(1248,185,'_wc_booking_has_persons',''),(1249,185,'_wc_booking_has_resources',''),(1250,185,'_wc_booking_has_restricted_days',''),(1251,185,'_wc_booking_max_date_unit','month'),(1252,185,'_wc_booking_max_date','12'),(1253,185,'_wc_booking_max_duration','1'),(1254,185,'_wc_booking_max_persons_group','1'),(1255,185,'_wc_booking_min_date_unit','day'),(1256,185,'_wc_booking_min_date','0'),(1257,185,'_wc_booking_min_duration','1'),(1258,185,'_wc_booking_min_persons_group','1'),(1259,185,'_wc_booking_person_cost_multiplier',''),(1260,185,'_wc_booking_person_qty_multiplier',''),(1261,185,'_wc_booking_pricing','a:0:{}'),(1262,185,'_wc_booking_qty','1'),(1263,185,'_wc_booking_requires_confirmation',''),(1264,185,'_wc_booking_resources_assignment','customer'),(1265,185,'_wc_booking_restricted_days',''),(1266,185,'_wc_booking_user_can_cancel','1'),(1267,185,'_wc_display_cost',''),(1268,185,'wc_booking_resource_label',''),(1269,185,'_price','0'),(1270,185,'_resource_base_costs','a:0:{}'),(1271,185,'_resource_block_costs','a:0:{}'),(1272,185,'_product_version','4.9.2'),(1273,185,'site-sidebar-layout','no-sidebar'),(1274,185,'site-content-layout','default'),(1275,185,'theme-transparent-header-meta','default'),(1276,187,'_edit_lock','1612220774:1'),(1277,187,'_elementor_edit_mode','builder'),(1278,187,'_elementor_template_type','wp-page'),(1279,187,'_elementor_version','3.1.1'),(1280,187,'_astra_content_layout_flag','disabled'),(1281,187,'site-post-title','disabled'),(1282,187,'ast-title-bar-display','disabled'),(1283,187,'ast-featured-img','disabled'),(1284,187,'site-content-layout','page-builder'),(1285,187,'site-sidebar-layout','no-sidebar'),(1286,187,'_wp_page_template','default'),(1287,187,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1288,187,'_elementor_data','[{\"id\":\"1ab6898\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"478613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf1899c\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[wbc-calendar]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(1289,188,'_elementor_edit_mode','builder'),(1290,188,'_elementor_template_type','wp-page'),(1291,188,'_elementor_version','3.1.1'),(1292,188,'_wp_page_template','default'),(1293,188,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1294,188,'_elementor_data','[{\"id\":\"bc9c169\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa33e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7104466\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"the_events_calendar\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"abd3ec4\"}]},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(1295,189,'_elementor_edit_mode','builder'),(1296,189,'_elementor_template_type','wp-page'),(1297,189,'_elementor_version','3.1.1'),(1298,189,'_wp_page_template','default'),(1299,189,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1300,189,'_elementor_data','[{\"id\":\"bc9c169\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa33e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7104466\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"the_events_calendar\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"abd3ec4\"}]},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(1301,190,'_elementor_edit_mode','builder'),(1302,190,'_elementor_template_type','wp-page'),(1303,190,'_elementor_version','3.1.1'),(1304,190,'_wp_page_template','default'),(1305,190,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1306,190,'_elementor_data','[{\"id\":\"bc9c169\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa33e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7104466\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"the_events_calendar\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"abd3ec4\"}]},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(1319,193,'_elementor_edit_mode','builder'),(1320,193,'_elementor_template_type','wp-page'),(1321,193,'_elementor_version','3.1.0'),(1322,193,'_wp_page_template','default'),(1323,193,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1324,193,'_elementor_data','[{\"id\":\"4f626f2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c80865e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f4c615\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p>NOT ALL SPRAYERS ARE THE SAME!<\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>\\u00a0<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. Coulomb\\u2019s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1325,193,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(1335,198,'_elementor_edit_mode','builder'),(1336,198,'_elementor_template_type','wp-page'),(1337,198,'_elementor_version','3.1.1'),(1338,198,'_wp_page_template','default'),(1339,198,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1340,198,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1341,199,'_elementor_edit_mode','builder'),(1342,199,'_elementor_template_type','wp-page'),(1343,199,'_elementor_version','3.1.1'),(1344,199,'_wp_page_template','default'),(1345,199,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1346,199,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"LIVE CHAT\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1347,200,'_elementor_edit_mode','builder'),(1348,200,'_elementor_template_type','wp-page'),(1349,200,'_elementor_version','3.1.1'),(1350,200,'_wp_page_template','default'),(1351,200,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1352,200,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(1355,201,'_elementor_edit_mode','builder'),(1356,201,'_elementor_template_type','wp-page'),(1357,201,'_elementor_version','3.1.1'),(1358,201,'_wp_page_template','default'),(1359,201,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1360,201,'_elementor_data','[{\"id\":\"bc9c169\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa33e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7104466\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"the_events_calendar\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"abd3ec4\"}]},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(1362,202,'_elementor_edit_mode','builder'),(1363,202,'_elementor_template_type','wp-page'),(1364,202,'_elementor_version','3.1.1'),(1365,202,'_wp_page_template','default'),(1366,202,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1367,202,'_elementor_data','[{\"id\":\"bc9c169\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa33e3e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7104466\",\"elType\":\"widget\",\"settings\":{\"eael_event_calendar_type\":\"the_events_calendar\",\"eael_event_items\":[{\"eael_event_title\":\"Event Title\",\"_id\":\"abd3ec4\"}]},\"elements\":[],\"widgetType\":\"eael-event-calendar\"}],\"isInner\":false}],\"isInner\":false}]'),(1369,203,'_elementor_edit_mode','builder'),(1370,203,'_elementor_template_type','wp-page'),(1371,203,'_elementor_version','3.1.1'),(1372,203,'_wp_page_template','default'),(1373,203,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1374,203,'_elementor_data','[{\"id\":\"1ab6898\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"478613b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf1899c\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[wbc-calendar]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false}]'),(1376,187,'_elementor_controls_usage','a:3:{s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(1387,205,'_edit_lock','1612276841:1'),(1388,205,'_edit_last','1'),(1389,205,'_elementor_edit_mode','builder'),(1390,205,'site-sidebar-layout','no-sidebar'),(1391,205,'site-content-layout','page-builder'),(1392,205,'theme-transparent-header-meta','default'),(1393,205,'_elementor_template_type','wp-page'),(1394,205,'_elementor_version','3.1.1'),(1395,205,'_astra_content_layout_flag','disabled'),(1396,205,'site-post-title','disabled'),(1397,205,'ast-title-bar-display','disabled'),(1398,205,'ast-featured-img','disabled'),(1399,207,'_wp_attached_file','2021/02/choose-us-2-scaled.jpg'),(1400,207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:30:\"2021/02/choose-us-2-scaled.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"choose-us-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"choose-us-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"choose-us-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"choose-us-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"choose-us-2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"choose-us-2.jpg\";}'),(1401,43,'_elementor_edit_mode','builder'),(1410,43,'_oembed_e0be050a45dd5515f564ed1b08142dd1','<iframe title=\"ECO SOLUTIONS\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/d7J_8Agv8fk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(1411,43,'_oembed_time_e0be050a45dd5515f564ed1b08142dd1','1612277480'),(1413,208,'_elementor_template_type','wp-page'),(1414,208,'_elementor_version','3.1.0'),(1415,208,'_wp_page_template','elementor_theme'),(1416,208,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1417,208,'_elementor_data','[]'),(1418,208,'_elementor_edit_mode','builder'),(1420,209,'_elementor_template_type','wp-page'),(1421,209,'_elementor_version','3.1.0'),(1422,209,'_wp_page_template','elementor_theme'),(1423,209,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1424,209,'_elementor_data','[]'),(1425,209,'_elementor_edit_mode','builder'),(1427,210,'_elementor_template_type','wp-page'),(1428,210,'_elementor_version','3.1.0'),(1429,210,'_wp_page_template','elementor_header_footer'),(1430,210,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1431,210,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1432,210,'_elementor_edit_mode','builder'),(1436,211,'_elementor_template_type','wp-page'),(1437,211,'_elementor_version','3.1.1'),(1438,211,'_wp_page_template','elementor_header_footer'),(1439,211,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1440,211,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1441,211,'_elementor_edit_mode','builder'),(1443,212,'_elementor_template_type','wp-page'),(1444,212,'_elementor_version','3.1.1'),(1445,212,'_wp_page_template','elementor_header_footer'),(1446,212,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1447,212,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1448,212,'_elementor_edit_mode','builder'),(1450,213,'_elementor_template_type','wp-page'),(1451,213,'_elementor_version','3.1.1'),(1452,213,'_wp_page_template','elementor_header_footer'),(1453,213,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1454,213,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1455,213,'_elementor_edit_mode','builder'),(1459,214,'_elementor_template_type','wp-page'),(1460,214,'_elementor_version','3.1.1'),(1461,214,'_wp_page_template','elementor_header_footer'),(1462,214,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1463,214,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1464,214,'_elementor_edit_mode','builder'),(1466,215,'_elementor_template_type','wp-page'),(1467,215,'_elementor_version','3.1.1'),(1468,215,'_wp_page_template','elementor_header_footer'),(1469,215,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1470,215,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1471,215,'_elementor_edit_mode','builder'),(1473,216,'_elementor_template_type','wp-page'),(1474,216,'_elementor_version','3.1.1'),(1475,216,'_wp_page_template','elementor_header_footer'),(1476,216,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1477,216,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1478,216,'_elementor_edit_mode','builder'),(1482,217,'_elementor_template_type','wp-page'),(1483,217,'_elementor_version','3.1.1'),(1484,217,'_wp_page_template','elementor_header_footer'),(1485,217,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1486,217,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1487,217,'_elementor_edit_mode','builder'),(1489,218,'_elementor_template_type','wp-page'),(1490,218,'_elementor_version','3.1.1'),(1491,218,'_wp_page_template','elementor_header_footer'),(1492,218,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1493,218,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1494,218,'_elementor_edit_mode','builder'),(1496,219,'_elementor_template_type','wp-page'),(1497,219,'_elementor_version','3.1.1'),(1498,219,'_wp_page_template','elementor_header_footer'),(1499,219,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1500,219,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1501,219,'_elementor_edit_mode','builder'),(1505,220,'_elementor_template_type','wp-page'),(1506,220,'_elementor_version','3.1.1'),(1507,220,'_wp_page_template','elementor_header_footer'),(1508,220,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1509,220,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1510,220,'_elementor_edit_mode','builder'),(1512,221,'_elementor_template_type','wp-page'),(1513,221,'_elementor_version','3.1.1'),(1514,221,'_wp_page_template','elementor_header_footer'),(1515,221,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1516,221,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"mute\":\"yes\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1517,221,'_elementor_edit_mode','builder'),(1519,222,'_elementor_template_type','wp-page'),(1520,222,'_elementor_version','3.1.1'),(1521,222,'_wp_page_template','elementor_header_footer'),(1522,222,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1523,222,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1524,222,'_elementor_edit_mode','builder'),(1528,223,'_elementor_template_type','wp-page'),(1529,223,'_elementor_version','3.1.1'),(1530,223,'_wp_page_template','elementor_header_footer'),(1531,223,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1532,223,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1533,223,'_elementor_edit_mode','builder'),(1535,224,'_elementor_template_type','wp-page'),(1536,224,'_elementor_version','3.1.1'),(1537,224,'_wp_page_template','elementor_header_footer'),(1538,224,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1539,224,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1540,224,'_elementor_edit_mode','builder'),(1542,225,'_elementor_template_type','wp-page'),(1543,225,'_elementor_version','3.1.1'),(1544,225,'_wp_page_template','elementor_header_footer'),(1545,225,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1546,225,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1547,225,'_elementor_edit_mode','builder'),(1551,226,'_elementor_template_type','wp-page'),(1552,226,'_elementor_version','3.1.1'),(1553,226,'_wp_page_template','elementor_header_footer'),(1554,226,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1555,226,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1556,226,'_elementor_edit_mode','builder'),(1558,227,'_elementor_template_type','wp-page'),(1559,227,'_elementor_version','3.1.1'),(1560,227,'_wp_page_template','elementor_header_footer'),(1561,227,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1562,227,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false}]'),(1563,227,'_elementor_edit_mode','builder'),(1565,228,'_elementor_template_type','wp-page'),(1566,228,'_elementor_version','3.1.1'),(1567,228,'_wp_page_template','elementor_header_footer'),(1568,228,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1569,228,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1570,228,'_elementor_edit_mode','builder'),(1583,230,'_elementor_template_type','wp-page'),(1584,230,'_elementor_version','3.1.1'),(1585,230,'_wp_page_template','elementor_header_footer'),(1586,230,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1587,230,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1588,230,'_elementor_edit_mode','builder'),(1590,231,'_elementor_template_type','wp-page'),(1591,231,'_elementor_version','3.1.1'),(1592,231,'_wp_page_template','elementor_header_footer'),(1593,231,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1594,231,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1595,231,'_elementor_edit_mode','builder'),(1597,232,'_elementor_template_type','wp-page'),(1598,232,'_elementor_version','3.1.1'),(1599,232,'_wp_page_template','elementor_header_footer'),(1600,232,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1601,232,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1602,232,'_elementor_edit_mode','builder'),(1606,233,'_elementor_template_type','wp-page'),(1607,233,'_elementor_version','3.1.1'),(1608,233,'_wp_page_template','elementor_header_footer'),(1609,233,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1610,233,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1611,233,'_elementor_edit_mode','builder'),(1613,234,'_elementor_template_type','wp-page'),(1614,234,'_elementor_version','3.1.1'),(1615,234,'_wp_page_template','elementor_header_footer'),(1616,234,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1617,234,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT EDSSNOW\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1618,234,'_elementor_edit_mode','builder'),(1620,235,'_elementor_template_type','wp-page'),(1621,235,'_elementor_version','3.1.1'),(1622,235,'_wp_page_template','elementor_header_footer'),(1623,235,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1624,235,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1625,235,'_elementor_edit_mode','builder'),(1629,236,'_elementor_template_type','wp-page'),(1630,236,'_elementor_version','3.1.1'),(1631,236,'_wp_page_template','elementor_header_footer'),(1632,236,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1633,236,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1634,236,'_elementor_edit_mode','builder'),(1636,237,'_elementor_template_type','wp-page'),(1637,237,'_elementor_version','3.1.1'),(1638,237,'_wp_page_template','elementor_header_footer'),(1639,237,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1640,237,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1641,237,'_elementor_edit_mode','builder'),(1643,238,'_elementor_template_type','wp-page'),(1644,238,'_elementor_version','3.1.1'),(1645,238,'_wp_page_template','elementor_header_footer'),(1646,238,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1647,238,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-style: inherit;\\\">ECO Solutions&nbsp;<\\/strong><span style=\\\"font-style: inherit; font-weight: inherit;\\\">is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;<\\/span><span style=\\\"font-style: inherit; font-weight: inherit; color: rgb(102, 192, 16);\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><br><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;<span style=\\\"color:#66c010\\\">CDC<\\/span>&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1648,238,'_elementor_edit_mode','builder'),(1652,239,'_elementor_template_type','wp-page'),(1653,239,'_elementor_version','3.1.1'),(1654,239,'_wp_page_template','elementor_header_footer'),(1655,239,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1656,239,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-style: inherit;\\\">ECO Solutions&nbsp;<\\/strong><span style=\\\"font-style: inherit; font-weight: inherit;\\\">is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;<\\/span><span style=\\\"font-style: inherit; font-weight: inherit; color: rgb(102, 192, 16);\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><br><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;<span style=\\\"color:#66c010\\\">CDC<\\/span>&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1657,239,'_elementor_edit_mode','builder'),(1659,240,'_elementor_template_type','wp-page'),(1660,240,'_elementor_version','3.1.1'),(1661,240,'_wp_page_template','elementor_header_footer'),(1662,240,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1663,240,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-style: inherit;\\\">ECO Solutions&nbsp;<\\/strong><span style=\\\"font-style: inherit; font-weight: inherit;\\\">is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;<\\/span><span style=\\\"font-style: inherit; font-weight: inherit; color: rgb(102, 192, 16);\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><br><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;<span style=\\\"color:#66c010\\\">CDC<\\/span>&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1664,240,'_elementor_edit_mode','builder'),(1666,241,'_elementor_template_type','wp-page'),(1667,241,'_elementor_version','3.1.1'),(1668,241,'_wp_page_template','elementor_header_footer'),(1669,241,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1670,241,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-1.399999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong style=\\\"font-style: inherit;\\\">ECO Solutions&nbsp;<\\/strong><span style=\\\"font-style: inherit; font-weight: inherit;\\\">is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;<\\/span><span style=\\\"font-style: inherit; font-weight: inherit; color: rgb(102, 192, 16);\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><br><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;<span style=\\\"color:#66c010\\\">CDC<\\/span>&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"aspect_ratio\":\"43\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1671,241,'_elementor_edit_mode','builder'),(1673,43,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:4:\"loop\";i:1;s:14:\"modestbranding\";i:1;s:10:\"yt_privacy\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:12:\"aspect_ratio\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(1675,242,'_elementor_template_type','wp-page'),(1676,242,'_elementor_version','3.1.1'),(1677,242,'_wp_page_template','elementor_header_footer'),(1678,242,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1679,242,'_elementor_data','[{\"id\":\"17345d1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f1d7659\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a5d9437\",\"elType\":\"widget\",\"settings\":{\"title\":\"ABOUT ECO SOLUTIONS\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5821842\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>ECO Solutions\\u00a0<\\/strong>is committed to helping Businesses and Individuals provide clean and healthy environment by\\u00a0<span style=\\\"color:#66c010\\\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.<\\/span><\\/p>\\n<p><span style=\\\"color:#66c010\\\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating<\\/span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the\\u00a0<span style=\\\"color:#66c010\\\">CDC<\\/span>\\u00a0as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ea20841\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6c0304c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"84172cf\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"loop\":\"yes\",\"modestbranding\":\"yes\",\"yt_privacy\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"85ca5e3\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f8cb550\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1068625\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-11,\"color\":\"rgba(0,0,0,0.5)\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1680,242,'_elementor_edit_mode','builder'),(1681,242,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:1:{s:22:\"_box_shadow_box_shadow\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_video\";a:4:{s:11:\"youtube_url\";i:1;s:4:\"loop\";i:1;s:14:\"modestbranding\";i:1;s:10:\"yt_privacy\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:1:{s:12:\"aspect_ratio\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(1692,82,'_elementor_edit_mode','builder'),(1702,245,'_wp_attached_file','2021/02/pexels-cdc-3992933-scaled.jpg'),(1703,245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:37:\"2021/02/pexels-cdc-3992933-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"pexels-cdc-3992933-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"pexels-cdc-3992933-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"pexels-cdc-3992933-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"pexels-cdc-3992933-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"pexels-cdc-3992933-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"pexels-cdc-3992933.jpg\";}'),(1706,247,'_elementor_edit_mode','builder'),(1707,247,'_elementor_template_type','wp-page'),(1708,247,'_elementor_version','3.1.1'),(1709,247,'_wp_page_template','default'),(1710,247,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1711,247,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1712,248,'_elementor_edit_mode','builder'),(1713,248,'_elementor_template_type','wp-page'),(1714,248,'_elementor_version','3.1.1'),(1715,248,'_wp_page_template','default'),(1716,248,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1717,248,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1718,249,'_elementor_edit_mode','builder'),(1719,249,'_elementor_template_type','wp-page'),(1720,249,'_elementor_version','3.1.1'),(1721,249,'_wp_page_template','default'),(1722,249,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1723,249,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e8b630\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1738,251,'_elementor_edit_mode','builder'),(1739,251,'_elementor_template_type','wp-page'),(1740,251,'_elementor_version','3.1.1'),(1741,251,'_wp_page_template','default'),(1742,251,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1743,251,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e8b630\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1745,252,'_elementor_edit_mode','builder'),(1746,252,'_elementor_template_type','wp-page'),(1747,252,'_elementor_version','3.1.1'),(1748,252,'_wp_page_template','default'),(1749,252,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1750,252,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1e8b630\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1752,253,'_elementor_edit_mode','builder'),(1753,253,'_elementor_template_type','wp-page'),(1754,253,'_elementor_version','3.1.1'),(1755,253,'_wp_page_template','default'),(1756,253,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1757,253,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1761,254,'_elementor_edit_mode','builder'),(1762,254,'_elementor_template_type','wp-page'),(1763,254,'_elementor_version','3.1.1'),(1764,254,'_wp_page_template','default'),(1765,254,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1766,254,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1768,255,'_elementor_edit_mode','builder'),(1769,255,'_elementor_template_type','wp-page'),(1770,255,'_elementor_version','3.1.1'),(1771,255,'_wp_page_template','default'),(1772,255,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1773,255,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1775,256,'_elementor_edit_mode','builder'),(1776,256,'_elementor_template_type','wp-page'),(1777,256,'_elementor_version','3.1.1'),(1778,256,'_wp_page_template','default'),(1779,256,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1780,256,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(1786,257,'_elementor_template_type','wp-page'),(1787,257,'_elementor_version','3.1.0'),(1788,257,'_wp_page_template','default'),(1789,257,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1790,257,'_elementor_data','[{\"id\":\"4f626f2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c80865e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f4c615\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p>NOT ALL SPRAYERS ARE THE SAME!<\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>\\u00a0<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. Coulomb\\u2019s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1791,257,'_elementor_edit_mode','builder'),(1792,258,'_elementor_template_type','wp-page'),(1793,258,'_elementor_version','3.1.0'),(1794,258,'_wp_page_template','default'),(1795,258,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1796,258,'_elementor_data','[{\"id\":\"4f626f2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c80865e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2f4c615\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p>NOT ALL SPRAYERS ARE THE SAME!<\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>\\u00a0<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. Coulomb\\u2019s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1797,258,'_elementor_edit_mode','builder'),(1798,259,'_elementor_template_type','wp-page'),(1799,259,'_elementor_version','3.1.0'),(1800,259,'_wp_page_template','elementor_header_footer'),(1801,259,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1802,259,'_elementor_data','[]'),(1803,259,'_elementor_edit_mode','builder'),(1810,261,'_wp_attached_file','2021/02/EMist_rollercart.jpg'),(1811,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:1424;s:4:\"file\";s:28:\"2021/02/EMist_rollercart.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"EMist_rollercart-179x300.jpg\";s:5:\"width\";i:179;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"EMist_rollercart-611x1024.jpg\";s:5:\"width\";i:611;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"EMist_rollercart-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"EMist_rollercart-768x1287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"EMist_rollercart-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"EMist_rollercart-600x1005.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"EMist_rollercart-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"EMist_rollercart-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"EMist_rollercart-600x1005.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1005;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"EMist_rollercart-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1817,262,'_elementor_template_type','wp-page'),(1818,262,'_elementor_version','3.1.1'),(1819,262,'_wp_page_template','elementor_header_footer'),(1820,262,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1821,262,'_elementor_data','[]'),(1822,262,'_elementor_edit_mode','builder'),(1824,263,'_elementor_template_type','wp-page'),(1825,263,'_elementor_version','3.1.1'),(1826,263,'_wp_page_template','elementor_header_footer'),(1827,263,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1828,263,'_elementor_data','[]'),(1829,263,'_elementor_edit_mode','builder'),(1831,264,'_elementor_template_type','wp-page'),(1832,264,'_elementor_version','3.1.1'),(1833,264,'_wp_page_template','elementor_header_footer'),(1834,264,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1835,264,'_elementor_data','[{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1836,264,'_elementor_edit_mode','builder'),(1840,265,'_elementor_template_type','wp-page'),(1841,265,'_elementor_version','3.1.1'),(1842,265,'_wp_page_template','elementor_header_footer'),(1843,265,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1844,265,'_elementor_data','[{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1845,265,'_elementor_edit_mode','builder'),(1847,266,'_elementor_template_type','wp-page'),(1848,266,'_elementor_version','3.1.1'),(1849,266,'_wp_page_template','elementor_header_footer'),(1850,266,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1851,266,'_elementor_data','[{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1852,266,'_elementor_edit_mode','builder'),(1854,267,'_elementor_template_type','wp-page'),(1855,267,'_elementor_version','3.1.1'),(1856,267,'_wp_page_template','elementor_header_footer'),(1857,267,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1858,267,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1859,267,'_elementor_edit_mode','builder'),(1863,268,'_elementor_template_type','wp-page'),(1864,268,'_elementor_version','3.1.1'),(1865,268,'_wp_page_template','elementor_header_footer'),(1866,268,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1867,268,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1868,268,'_elementor_edit_mode','builder'),(1870,269,'_elementor_template_type','wp-page'),(1871,269,'_elementor_version','3.1.1'),(1872,269,'_wp_page_template','elementor_header_footer'),(1873,269,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1874,269,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1875,269,'_elementor_edit_mode','builder'),(1877,270,'_elementor_template_type','wp-page'),(1878,270,'_elementor_version','3.1.1'),(1879,270,'_wp_page_template','elementor_header_footer'),(1880,270,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1881,270,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1882,270,'_elementor_edit_mode','builder'),(1886,271,'_elementor_template_type','wp-page'),(1887,271,'_elementor_version','3.1.1'),(1888,271,'_wp_page_template','elementor_header_footer'),(1889,271,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1890,271,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1891,271,'_elementor_edit_mode','builder'),(1893,272,'_elementor_template_type','wp-page'),(1894,272,'_elementor_version','3.1.1'),(1895,272,'_wp_page_template','elementor_header_footer'),(1896,272,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1897,272,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1898,272,'_elementor_edit_mode','builder'),(1900,273,'_elementor_template_type','wp-page'),(1901,273,'_elementor_version','3.1.1'),(1902,273,'_wp_page_template','elementor_header_footer'),(1903,273,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1904,273,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1905,273,'_elementor_edit_mode','builder'),(1909,274,'_elementor_template_type','wp-page'),(1910,274,'_elementor_version','3.1.1'),(1911,274,'_wp_page_template','elementor_header_footer'),(1912,274,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1913,274,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1914,274,'_elementor_edit_mode','builder'),(1916,275,'_elementor_template_type','wp-page'),(1917,275,'_elementor_version','3.1.1'),(1918,275,'_wp_page_template','elementor_header_footer'),(1919,275,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1920,275,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p><p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p><p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1921,275,'_elementor_edit_mode','builder'),(1923,276,'_elementor_template_type','wp-page'),(1924,276,'_elementor_version','3.1.1'),(1925,276,'_wp_page_template','elementor_header_footer'),(1926,276,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1927,276,'_elementor_data','[{\"id\":\"eab681a\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"033b983\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"07fd5bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"HOW DOES TRUELECTROSTATIC WORK?\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"02fe78b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"57cf160\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"037ed04\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/EMist_rollercart.jpg\",\"id\":261}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"639bd26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"08c4075\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><\\/p>\\n<p><br><\\/p><p>The TruElectrostatic Sprayer work by <span style=\\\"color: #66c010;\\\">charging the Liquid Disinfectan<\\/span> as it passes through the nozzle and <span style=\\\"color: #66c010;\\\">Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface.<\\/span> Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <span style=\\\"color: #66c010;\\\"><strong>EPA<\\/strong>:<\\/span> Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\\n<p><span style=\\\"color: #66c010;\\\">NOT ALL SPRAYERS ARE THE SAME!<\\/span><\\/p>\\n<p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift<\\/strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift <\\/strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift<\\/strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.<\\/p>\\n<p>The \\u201cExpansion Cloud Effect\\u201d explains how charged droplets are repelled by objects with a like charged. <span style=\\\"color: #66c010;\\\">Coulomb\\u2019s Law<\\/span> states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.<\\/p>\",\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1928,276,'_elementor_edit_mode','builder'),(1930,82,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_letter_spacing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}}}}'),(1932,277,'_edit_lock','1613758995:1'),(1933,277,'_elementor_edit_mode','builder'),(1934,277,'_elementor_template_type','wp-page'),(1935,277,'_elementor_version','3.1.1'),(1936,277,'_astra_content_layout_flag','disabled'),(1937,277,'site-post-title','disabled'),(1938,277,'ast-title-bar-display','disabled'),(1939,277,'ast-featured-img','disabled'),(1940,277,'site-content-layout','page-builder'),(1941,277,'site-sidebar-layout','no-sidebar'),(1942,279,'_elementor_edit_mode','builder'),(1943,279,'_elementor_template_type','wp-page'),(1944,279,'_elementor_version','3.1.1'),(1945,280,'_elementor_edit_mode','builder'),(1946,280,'_elementor_template_type','wp-page'),(1947,280,'_elementor_version','3.1.1'),(1948,277,'_wp_page_template','elementor_header_footer'),(1949,277,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1950,277,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1951,281,'_elementor_edit_mode','builder'),(1952,281,'_elementor_template_type','wp-page'),(1953,281,'_elementor_version','3.1.1'),(1954,281,'_wp_page_template','default'),(1955,281,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1956,281,'_elementor_data','[]'),(1963,283,'_elementor_edit_mode','builder'),(1964,283,'_elementor_template_type','wp-page'),(1965,283,'_elementor_version','3.1.1'),(1966,283,'_wp_page_template','default'),(1967,283,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1968,283,'_elementor_data','[]'),(1969,284,'_elementor_edit_mode','builder'),(1970,284,'_elementor_template_type','wp-page'),(1971,284,'_elementor_version','3.1.1'),(1972,284,'_wp_page_template','default'),(1973,284,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1974,284,'_elementor_data','[]'),(1975,285,'_elementor_edit_mode','builder'),(1976,285,'_elementor_template_type','wp-page'),(1977,285,'_elementor_version','3.1.1'),(1978,285,'_wp_page_template','elementor_header_footer'),(1979,285,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1980,285,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1993,287,'_elementor_edit_mode','builder'),(1994,287,'_elementor_template_type','wp-page'),(1995,287,'_elementor_version','3.1.1'),(1996,287,'_wp_page_template','elementor_header_footer'),(1997,287,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1998,287,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2000,288,'_elementor_edit_mode','builder'),(2001,288,'_elementor_template_type','wp-page'),(2002,288,'_elementor_version','3.1.1'),(2003,288,'_wp_page_template','elementor_header_footer'),(2004,288,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2005,288,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2007,289,'_elementor_edit_mode','builder'),(2008,289,'_elementor_template_type','wp-page'),(2009,289,'_elementor_version','3.1.1'),(2010,289,'_wp_page_template','elementor_header_footer'),(2011,289,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2012,289,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2016,290,'_elementor_edit_mode','builder'),(2017,290,'_elementor_template_type','wp-page'),(2018,290,'_elementor_version','3.1.1'),(2019,290,'_wp_page_template','elementor_header_footer'),(2020,290,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2021,290,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2023,291,'_elementor_edit_mode','builder'),(2024,291,'_elementor_template_type','wp-page'),(2025,291,'_elementor_version','3.1.1'),(2026,291,'_wp_page_template','elementor_header_footer'),(2027,291,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2028,291,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2030,292,'_elementor_edit_mode','builder'),(2031,292,'_elementor_template_type','wp-page'),(2032,292,'_elementor_version','3.1.1'),(2033,292,'_wp_page_template','elementor_header_footer'),(2034,292,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2035,292,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2039,293,'_elementor_edit_mode','builder'),(2040,293,'_elementor_template_type','wp-page'),(2041,293,'_elementor_version','3.1.1'),(2042,293,'_wp_page_template','elementor_header_footer'),(2043,293,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2044,293,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2046,294,'_elementor_edit_mode','builder'),(2047,294,'_elementor_template_type','wp-page'),(2048,294,'_elementor_version','3.1.1'),(2049,294,'_wp_page_template','elementor_header_footer'),(2050,294,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2051,294,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2053,295,'_elementor_edit_mode','builder'),(2054,295,'_elementor_template_type','wp-page'),(2055,295,'_elementor_version','3.1.1'),(2056,295,'_wp_page_template','elementor_header_footer'),(2057,295,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2058,295,'_elementor_data','[{\"id\":\"0844246\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"54617fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"751a6c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"11ffc9f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"36c4226\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"61f81e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"How long can the coronavirus live on Surfaces?\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c2eac4\",\"elType\":\"widget\",\"settings\":{\"eael_adv_accordion_tab\":[{\"eael_adv_accordion_tab_title\":\"Plastic\",\"_id\":\"c7f4f5a\",\"eael_adv_accordion_tab_content\":\"<p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Metal\",\"_id\":\"3040e79\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.<\\/strong><\\/p>\"},{\"eael_adv_accordion_tab_title\":\"Paper\",\"_id\":\"8fd230f\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.<\\/strong><\\/p>\"},{\"_id\":\"02f2f77\",\"eael_adv_accordion_tab_title\":\"Glass\",\"eael_adv_accordion_tab_content\":\"<p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.<\\/strong><\\/p>\"},{\"_id\":\"5b15bfa\",\"eael_adv_accordion_tab_title\":\"Cloth\",\"eael_adv_accordion_tab_content\":\"<p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).<\\/strong><\\/p><p><a href=\\\"http:\\/\\/www.goodhousekeeping.com\\/health\\\"><strong>www.goodhousekeeping.com\\/health<\\/strong><\\/a><\\/p>\"}]},\"elements\":[],\"widgetType\":\"eael-adv-accordion\"},{\"id\":\"6450a5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips to mimize your risk\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f989db8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.<\\/li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.<\\/li><li>Social Distance (stay at least 6 feet away from others)<\\/li><li>Cover your Coughs and sneezes.<\\/li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.<\\/li><li><strong>Disinfect high touch areas often.<\\/strong><\\/li><li>Use Video conferencing for Meetings if possible.<\\/li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.<\\/strong><\\/li><li>Use non-contact methods to greet others.<\\/li><\\/ol><ul><li>Know how the Virus spread.<\\/li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.<\\/li><\\/ul><p><strong>Protect others by wearing a Mask.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.70000000000000017763568394002504646778106689453125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0f34572\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"15a6883\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a692536\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5413c23\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"4a9dd1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"05407e3\",\"elType\":\"widget\",\"settings\":{\"embedpress_embeded_link\":\"https:\\/\\/giphy.com\\/gifs\\/idShevOa24HzYTgz06\\/html5\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0125\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"embedpres_elementor\"}],\"isInner\":true},{\"id\":\"e991bc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2060,277,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}s:18:\"eael-adv-accordion\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:43:\"eael_section_adv_accordion_content_settings\";a:1:{s:22:\"eael_adv_accordion_tab\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}}}s:19:\"embedpres_elementor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:37:\"embedpress_elementor_content_settings\";a:1:{s:23:\"embedpress_embeded_link\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(2062,296,'_menu_item_type','post_type'),(2063,296,'_menu_item_menu_item_parent','418'),(2064,296,'_menu_item_object_id','277'),(2065,296,'_menu_item_object','page'),(2066,296,'_menu_item_target',''),(2067,296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2068,296,'_menu_item_xfn',''),(2069,296,'_menu_item_url',''),(2081,298,'_elementor_edit_mode','builder'),(2082,298,'_elementor_template_type','wp-page'),(2083,298,'_elementor_version','3.1.1'),(2084,298,'_wp_page_template','default'),(2085,298,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2086,298,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2088,299,'_elementor_edit_mode','builder'),(2089,299,'_elementor_template_type','wp-page'),(2090,299,'_elementor_version','3.1.1'),(2091,299,'_wp_page_template','default'),(2092,299,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2093,299,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2095,300,'_elementor_edit_mode','builder'),(2096,300,'_elementor_template_type','wp-page'),(2097,300,'_elementor_version','3.1.1'),(2098,300,'_wp_page_template','default'),(2099,300,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2100,300,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2114,302,'_elementor_edit_mode','builder'),(2115,302,'_elementor_template_type','wp-page'),(2116,302,'_elementor_version','3.1.1'),(2117,302,'_wp_page_template','default'),(2118,302,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (2119,302,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2121,303,'_elementor_edit_mode','builder'),(2122,303,'_elementor_template_type','wp-page'),(2123,303,'_elementor_version','3.1.1'),(2124,303,'_wp_page_template','default'),(2125,303,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2126,303,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}]},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}]},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2128,304,'_elementor_edit_mode','builder'),(2129,304,'_elementor_template_type','wp-page'),(2130,304,'_elementor_version','3.1.1'),(2131,304,'_wp_page_template','default'),(2132,304,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2133,304,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2137,305,'_elementor_edit_mode','builder'),(2138,305,'_elementor_template_type','wp-page'),(2139,305,'_elementor_version','3.1.1'),(2140,305,'_wp_page_template','default'),(2141,305,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2142,305,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2144,306,'_elementor_edit_mode','builder'),(2145,306,'_elementor_template_type','wp-page'),(2146,306,'_elementor_version','3.1.1'),(2147,306,'_wp_page_template','default'),(2148,306,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2149,306,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2151,307,'_elementor_edit_mode','builder'),(2152,307,'_elementor_template_type','wp-page'),(2153,307,'_elementor_version','3.1.1'),(2154,307,'_wp_page_template','default'),(2155,307,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2156,307,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2167,185,'_thumbnail_id','135'),(2168,310,'_elementor_edit_mode','builder'),(2169,310,'_elementor_template_type','wp-page'),(2170,310,'_elementor_version','3.1.1'),(2171,310,'_wp_page_template','default'),(2172,310,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2173,310,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2175,311,'_elementor_edit_mode','builder'),(2176,311,'_elementor_template_type','wp-page'),(2177,311,'_elementor_version','3.1.1'),(2178,311,'_wp_page_template','default'),(2179,311,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2180,311,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2182,312,'_elementor_edit_mode','builder'),(2183,312,'_elementor_template_type','wp-page'),(2184,312,'_elementor_version','3.1.1'),(2185,312,'_wp_page_template','default'),(2186,312,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2187,312,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2190,313,'_elementor_edit_mode','builder'),(2191,313,'_elementor_template_type','wp-page'),(2192,313,'_elementor_version','3.1.1'),(2193,313,'_wp_page_template','default'),(2194,313,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2195,313,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2196,314,'_elementor_edit_mode','builder'),(2197,314,'_elementor_template_type','wp-page'),(2198,314,'_elementor_version','3.1.1'),(2199,314,'_wp_page_template','default'),(2200,314,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2201,314,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a40f8bb\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"CLICK HERE TO SCHEDULE A DISINFECTING NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f77bdae\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a9487ab\",\"elType\":\"widget\",\"settings\":{\"creative_button_text\":\"BOOK US RIGHT NOW\",\"creative_button_secondary_text\":\"Go!\",\"eael_creative_button_background_color\":\"#002145\",\"eael_creative_button_hover_background_color\":\"#A5ACAF\",\"eael_creative_button_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"eael-creative-button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2202,315,'_elementor_edit_mode','builder'),(2203,315,'_elementor_template_type','wp-page'),(2204,315,'_elementor_version','3.1.1'),(2205,315,'_wp_page_template','default'),(2206,315,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2207,315,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2210,316,'_wp_page_template','default'),(2211,316,'_elementor_edit_mode','builder'),(2212,316,'_elementor_template_type','wp-post'),(2213,316,'_elementor_version','3.1.1'),(2214,316,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2215,316,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2217,317,'_wp_page_template','default'),(2218,317,'_elementor_edit_mode','builder'),(2219,317,'_elementor_template_type','wp-post'),(2220,317,'_elementor_version','3.1.1'),(2221,317,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2222,317,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2224,318,'_wp_page_template','default'),(2225,318,'_elementor_edit_mode','builder'),(2226,318,'_elementor_template_type','wp-post'),(2227,318,'_elementor_version','3.1.1'),(2228,318,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2229,318,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2232,319,'_wp_page_template','default'),(2233,319,'_elementor_edit_mode','builder'),(2234,319,'_elementor_template_type','wp-post'),(2235,319,'_elementor_version','3.1.1'),(2236,319,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2237,319,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2238,320,'_wp_page_template','default'),(2239,320,'_elementor_edit_mode','builder'),(2240,320,'_elementor_template_type','wp-post'),(2241,320,'_elementor_version','3.1.1'),(2242,320,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2243,320,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2244,321,'_wp_page_template','default'),(2245,321,'_elementor_edit_mode','builder'),(2246,321,'_elementor_template_type','wp-post'),(2247,321,'_elementor_version','3.1.1'),(2248,321,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2249,321,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2252,322,'_wp_page_template','default'),(2253,322,'_elementor_edit_mode','builder'),(2254,322,'_elementor_template_type','wp-post'),(2255,322,'_elementor_version','3.1.1'),(2256,322,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2257,322,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2259,323,'_wp_page_template','default'),(2260,323,'_elementor_edit_mode','builder'),(2261,323,'_elementor_template_type','wp-post'),(2262,323,'_elementor_version','3.1.1'),(2263,323,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2264,323,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2266,324,'_wp_page_template','default'),(2267,324,'_elementor_edit_mode','builder'),(2268,324,'_elementor_template_type','wp-post'),(2269,324,'_elementor_version','3.1.1'),(2270,324,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2271,324,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2275,325,'_edit_last','1'),(2276,325,'_edit_lock','1613840424:1'),(2277,325,'_elementor_edit_mode','builder'),(2278,325,'_elementor_template_type','wp-post'),(2279,325,'_elementor_version','3.1.1'),(2280,325,'_astra_content_layout_flag','disabled'),(2281,325,'site-post-title','disabled'),(2282,325,'ast-title-bar-display','disabled'),(2283,325,'ast-featured-img','disabled'),(2284,325,'site-content-layout','page-builder'),(2285,325,'site-sidebar-layout','no-sidebar'),(2286,326,'_elementor_edit_mode','builder'),(2287,326,'_elementor_template_type','wp-post'),(2288,326,'_elementor_version','3.1.1'),(2289,327,'_elementor_edit_mode','builder'),(2290,327,'_elementor_template_type','wp-post'),(2291,327,'_elementor_version','3.1.1'),(2292,325,'_wp_page_template','default'),(2293,325,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2294,325,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\",\"toggle_color\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#424242\",\"divider_border_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2295,328,'_elementor_edit_mode','builder'),(2296,328,'_elementor_template_type','wp-post'),(2297,328,'_elementor_version','3.1.1'),(2298,328,'_wp_page_template','default'),(2299,328,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2300,328,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2302,325,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(2303,325,'ehf_target_exclude_locations','a:0:{}'),(2304,325,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(2305,325,'ehf_template_type','type_header'),(2306,325,'theme-transparent-header-meta','default'),(2317,330,'_elementor_edit_mode','builder'),(2318,330,'_elementor_template_type','wp-page'),(2319,330,'_elementor_version','3.1.1'),(2320,330,'_wp_page_template','default'),(2321,330,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (2322,330,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2324,331,'_elementor_edit_mode','builder'),(2325,331,'_elementor_template_type','wp-page'),(2326,331,'_elementor_version','3.1.1'),(2327,331,'_wp_page_template','default'),(2328,331,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2329,331,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2331,332,'_elementor_edit_mode','builder'),(2332,332,'_elementor_template_type','wp-page'),(2333,332,'_elementor_version','3.1.1'),(2334,332,'_wp_page_template','default'),(2335,332,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2336,332,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Nationwide CCS to perform Quality Janitorial Services as well as Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2340,333,'_elementor_edit_mode','builder'),(2341,333,'_elementor_template_type','wp-page'),(2342,333,'_elementor_version','3.1.1'),(2343,333,'_wp_page_template','default'),(2344,333,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2345,333,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Nationwide CCS to perform Quality Janitorial Services as well as Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2347,334,'_elementor_edit_mode','builder'),(2348,334,'_elementor_template_type','wp-page'),(2349,334,'_elementor_version','3.1.1'),(2350,334,'_wp_page_template','default'),(2351,334,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2352,334,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Nationwide CCS to perform Quality Janitorial Services as well as Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2354,335,'_elementor_edit_mode','builder'),(2355,335,'_elementor_template_type','wp-page'),(2356,335,'_elementor_version','3.1.1'),(2357,335,'_wp_page_template','default'),(2358,335,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2359,335,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2363,336,'_elementor_edit_mode','builder'),(2364,336,'_elementor_template_type','wp-post'),(2365,336,'_elementor_version','3.1.1'),(2366,336,'_wp_page_template','default'),(2367,336,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2368,336,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2370,337,'_elementor_edit_mode','builder'),(2371,337,'_elementor_template_type','wp-post'),(2372,337,'_elementor_version','3.1.1'),(2373,337,'_wp_page_template','default'),(2374,337,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2375,337,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2377,338,'_elementor_edit_mode','builder'),(2378,338,'_elementor_template_type','wp-post'),(2379,338,'_elementor_version','3.1.1'),(2380,338,'_wp_page_template','default'),(2381,338,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2382,338,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2386,339,'_elementor_edit_mode','builder'),(2387,339,'_elementor_template_type','wp-post'),(2388,339,'_elementor_version','3.1.1'),(2389,339,'_wp_page_template','default'),(2390,339,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2391,339,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2393,340,'_elementor_edit_mode','builder'),(2394,340,'_elementor_template_type','wp-post'),(2395,340,'_elementor_version','3.1.1'),(2396,340,'_wp_page_template','default'),(2397,340,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2398,340,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2400,341,'_elementor_edit_mode','builder'),(2401,341,'_elementor_template_type','wp-post'),(2402,341,'_elementor_version','3.1.1'),(2403,341,'_wp_page_template','default'),(2404,341,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2405,341,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2409,342,'_elementor_edit_mode','builder'),(2410,342,'_elementor_template_type','wp-post'),(2411,342,'_elementor_version','3.1.1'),(2412,342,'_wp_page_template','default'),(2413,342,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2414,342,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2416,343,'_elementor_edit_mode','builder'),(2417,343,'_elementor_template_type','wp-post'),(2418,343,'_elementor_version','3.1.1'),(2419,343,'_wp_page_template','default'),(2420,343,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2421,343,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2423,344,'_elementor_edit_mode','builder'),(2424,344,'_elementor_template_type','wp-post'),(2425,344,'_elementor_version','3.1.1'),(2426,344,'_wp_page_template','default'),(2427,344,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2428,344,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#86FE13\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2432,345,'_elementor_edit_mode','builder'),(2433,345,'_elementor_template_type','wp-post'),(2434,345,'_elementor_version','3.1.1'),(2435,345,'_wp_page_template','default'),(2436,345,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2437,345,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#86FE13\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2439,346,'_elementor_edit_mode','builder'),(2440,346,'_elementor_template_type','wp-post'),(2441,346,'_elementor_version','3.1.1'),(2442,346,'_wp_page_template','default'),(2443,346,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2444,346,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#FFFFFF\",\"color_menu_item_active\":\"#86FE13\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2446,347,'_elementor_edit_mode','builder'),(2447,347,'_elementor_template_type','wp-post'),(2448,347,'_elementor_version','3.1.1'),(2449,347,'_wp_page_template','default'),(2450,347,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2451,347,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2455,348,'_elementor_edit_mode','builder'),(2456,348,'_elementor_template_type','wp-post'),(2457,348,'_elementor_version','3.1.1'),(2458,348,'_wp_page_template','default'),(2459,348,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2460,348,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2462,349,'_elementor_edit_mode','builder'),(2463,349,'_elementor_template_type','wp-post'),(2464,349,'_elementor_version','3.1.1'),(2465,349,'_wp_page_template','default'),(2466,349,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2467,349,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"icon_text_color_focus\":\"#FFFFFF\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2469,350,'_elementor_edit_mode','builder'),(2470,350,'_elementor_template_type','wp-post'),(2471,350,'_elementor_version','3.1.1'),(2472,350,'_wp_page_template','default'),(2473,350,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2474,350,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2478,351,'_elementor_edit_mode','builder'),(2479,351,'_elementor_template_type','wp-page'),(2480,351,'_elementor_version','3.1.1'),(2481,351,'_wp_page_template','default'),(2482,351,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2483,351,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2485,352,'_elementor_edit_mode','builder'),(2486,352,'_elementor_template_type','wp-page'),(2487,352,'_elementor_version','3.1.1'),(2488,352,'_wp_page_template','default'),(2489,352,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2490,352,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2492,353,'_elementor_edit_mode','builder'),(2493,353,'_elementor_template_type','wp-page'),(2494,353,'_elementor_version','3.1.1'),(2495,353,'_wp_page_template','default'),(2496,353,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2497,353,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2501,354,'_wp_page_template','default'),(2502,354,'_elementor_edit_mode','builder'),(2503,354,'_elementor_template_type','wp-post'),(2504,354,'_elementor_version','3.1.1'),(2505,354,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2506,354,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2508,355,'_wp_page_template','default'),(2509,355,'_elementor_edit_mode','builder'),(2510,355,'_elementor_template_type','wp-post'),(2511,355,'_elementor_version','3.1.1'),(2512,355,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2513,355,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>PO Box 241607<br>\\n\\nLittle Rock, Ark 72223<\\/>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2515,356,'_wp_page_template','default'),(2516,356,'_elementor_edit_mode','builder'),(2517,356,'_elementor_template_type','wp-post'),(2518,356,'_elementor_version','3.1.1'),(2519,356,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2520,356,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We look forward to working with you.<br>Our associates are standing by.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2524,357,'_elementor_edit_mode','builder'),(2525,357,'_elementor_template_type','wp-page'),(2526,357,'_elementor_version','3.1.1'),(2527,357,'_wp_page_template','default'),(2528,357,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2529,357,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2531,358,'_elementor_edit_mode','builder'),(2532,358,'_elementor_template_type','wp-page'),(2533,358,'_elementor_version','3.1.1'),(2534,358,'_wp_page_template','default'),(2535,358,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2536,358,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"},{\"eael_fancy_text_strings_text_field\":\"NIGHTLY JANITORIAL SERVICES\",\"_id\":\"6502475\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2538,359,'_elementor_edit_mode','builder'),(2539,359,'_elementor_template_type','wp-page'),(2540,359,'_elementor_version','3.1.1'),(2541,359,'_wp_page_template','default'),(2542,359,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2543,359,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2546,360,'_elementor_edit_mode','builder'),(2547,360,'_elementor_template_type','wp-page'),(2548,360,'_elementor_version','3.1.1'),(2549,360,'_wp_page_template','default'),(2550,360,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (2551,360,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2552,361,'_elementor_edit_mode','builder'),(2553,361,'_elementor_template_type','wp-page'),(2554,361,'_elementor_version','3.1.1'),(2555,361,'_wp_page_template','default'),(2556,361,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2557,361,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2558,362,'_elementor_edit_mode','builder'),(2559,362,'_elementor_template_type','wp-page'),(2560,362,'_elementor_version','3.1.1'),(2561,362,'_wp_page_template','default'),(2562,362,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2563,362,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2565,363,'_elementor_edit_mode','builder'),(2566,363,'_elementor_template_type','wp-page'),(2567,363,'_elementor_version','3.1.1'),(2568,363,'_wp_page_template','default'),(2569,363,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2570,363,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2571,364,'_elementor_edit_mode','builder'),(2572,364,'_elementor_template_type','wp-page'),(2573,364,'_elementor_version','3.1.1'),(2574,364,'_wp_page_template','default'),(2575,364,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2576,364,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2577,365,'_elementor_edit_mode','builder'),(2578,365,'_elementor_template_type','wp-page'),(2579,365,'_elementor_version','3.1.1'),(2580,365,'_wp_page_template','default'),(2581,365,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2582,365,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2584,366,'_elementor_edit_mode','builder'),(2585,366,'_elementor_template_type','wp-page'),(2586,366,'_elementor_version','3.1.1'),(2587,366,'_wp_page_template','default'),(2588,366,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2589,366,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2590,367,'_elementor_edit_mode','builder'),(2591,367,'_elementor_template_type','wp-page'),(2592,367,'_elementor_version','3.1.1'),(2593,367,'_wp_page_template','default'),(2594,367,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2595,367,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2596,368,'_elementor_edit_mode','builder'),(2597,368,'_elementor_template_type','wp-page'),(2598,368,'_elementor_version','3.1.1'),(2599,368,'_wp_page_template','default'),(2600,368,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2601,368,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2604,369,'_elementor_edit_mode','builder'),(2605,369,'_elementor_template_type','wp-page'),(2606,369,'_elementor_version','3.1.1'),(2607,369,'_wp_page_template','default'),(2608,369,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2609,369,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(2611,370,'_elementor_edit_mode','builder'),(2612,370,'_elementor_template_type','wp-page'),(2613,370,'_elementor_version','3.1.1'),(2614,370,'_wp_page_template','default'),(2615,370,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2616,370,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p>Nightly Janitorial Services<\\/p><p>Speciality Cleaning<\\/p><p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(2618,371,'_elementor_edit_mode','builder'),(2619,371,'_elementor_template_type','wp-page'),(2620,371,'_elementor_version','3.1.1'),(2621,371,'_wp_page_template','default'),(2622,371,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2623,371,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><br><\\/p>\\n<p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(2626,372,'_customer_user','0'),(2627,372,'_order_currency','USD'),(2628,372,'_order_shipping_tax','0'),(2629,372,'_order_tax','0'),(2630,372,'_order_total','1600.00'),(2631,372,'_order_version','4.9.2'),(2632,372,'_prices_include_tax','no'),(2633,372,'_billing_address_index','          '),(2634,372,'_shipping_address_index','        '),(2635,372,'_cart_discount','0'),(2636,372,'_cart_discount_tax','0'),(2637,372,'_order_shipping','0'),(2638,372,'Cleaning Services','1600'),(2639,372,'_edit_last','1'),(2640,372,'_edit_lock','1613020483:1'),(2734,376,'_edit_lock','1613353548:1'),(2735,376,'_edit_last','1'),(2736,376,'site-sidebar-layout','default'),(2737,376,'site-content-layout','default'),(2738,376,'theme-transparent-header-meta','default'),(2739,376,'_wp_page_template','elementor_header_footer'),(2740,376,'_elementor_edit_mode','builder'),(2741,376,'_elementor_template_type','wp-page'),(2742,376,'_elementor_version','3.1.1'),(2751,381,'_wp_page_template','elementor_canvas'),(2752,381,'_elementor_edit_mode','builder'),(2753,381,'_elementor_template_type','wp-page'),(2754,381,'_elementor_version','3.1.1'),(2756,382,'_wp_page_template','elementor_canvas'),(2757,382,'_elementor_edit_mode','builder'),(2758,382,'_elementor_template_type','wp-page'),(2759,382,'_elementor_version','3.1.1'),(2761,376,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2762,376,'_elementor_data','[{\"id\":\"9c2d25c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9997516\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bba6cb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a31f40\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"17fdb608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34333a21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:shortcode -->\\n[CP_APP_HOUR_BOOKING id=\\\"2\\\"]\\n<!-- \\/wp:shortcode -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2763,383,'_wp_page_template','elementor_header_footer'),(2764,383,'_elementor_edit_mode','builder'),(2765,383,'_elementor_template_type','wp-page'),(2766,383,'_elementor_version','3.1.1'),(2768,383,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2769,383,'_elementor_data','[{\"id\":\"9c2d25c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9997516\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bba6cb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a31f40\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"17fdb608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34333a21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:shortcode -->\\n[CP_APP_HOUR_BOOKING id=\\\"2\\\"]\\n<!-- \\/wp:shortcode -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2772,384,'_wp_page_template','elementor_header_footer'),(2773,384,'_elementor_edit_mode','builder'),(2774,384,'_elementor_template_type','wp-page'),(2775,384,'_elementor_version','3.1.1'),(2776,384,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2777,384,'_elementor_data','[{\"id\":\"9c2d25c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9997516\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bba6cb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a31f40\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"17fdb608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34333a21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:shortcode -->\\n[CP_APP_HOUR_BOOKING id=\\\"2\\\"]\\n<!-- \\/wp:shortcode -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2779,385,'_wp_page_template','elementor_header_footer'),(2780,385,'_elementor_edit_mode','builder'),(2781,385,'_elementor_template_type','wp-page'),(2782,385,'_elementor_version','3.1.1'),(2783,385,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2784,385,'_elementor_data','[{\"id\":\"9c2d25c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9997516\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bba6cb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a31f40\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"17fdb608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34333a21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:shortcode -->\\n[CP_APP_HOUR_BOOKING id=\\\"2\\\"]\\n<!-- \\/wp:shortcode -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2786,386,'_wp_page_template','elementor_header_footer'),(2787,386,'_elementor_edit_mode','builder'),(2788,386,'_elementor_template_type','wp-page'),(2789,386,'_elementor_version','3.1.1'),(2790,386,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2791,386,'_elementor_data','[{\"id\":\"9c2d25c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9997516\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bba6cb1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book An Appointment\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a31f40\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"17fdb608\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"34333a21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:shortcode -->\\n[CP_APP_HOUR_BOOKING id=\\\"2\\\"]\\n<!-- \\/wp:shortcode -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2793,376,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}}'),(2795,387,'_menu_item_type','post_type'),(2796,387,'_menu_item_menu_item_parent','0'),(2797,387,'_menu_item_object_id','376'),(2798,387,'_menu_item_object','page'),(2799,387,'_menu_item_target',''),(2800,387,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2801,387,'_menu_item_xfn',''),(2802,387,'_menu_item_url',''),(2808,389,'_customer_user','0'),(2809,389,'_order_currency','USD'),(2810,389,'_order_shipping_tax','0'),(2811,389,'_order_tax','0'),(2812,389,'_order_total','1.00'),(2813,389,'_order_version','4.9.2'),(2814,389,'_prices_include_tax','no'),(2815,389,'_billing_address_index','Ekow Essel Test Ekow 7 Sherman Cove  Maumelle AR 72113 US ekow@esselwebdesign.com 2106851230'),(2816,389,'_shipping_address_index','        '),(2817,389,'_cart_discount','0'),(2818,389,'_cart_discount_tax','0'),(2819,389,'_order_shipping','0'),(2820,389,'_edit_last','1'),(2821,389,'_order_key','wc_order_DSj8nDBwGRHcB'),(2822,389,'_payment_method','woocommerce_payments'),(2823,389,'_payment_method_title','Credit card'),(2824,389,'_created_via','admin'),(2825,389,'_billing_first_name','Ekow'),(2826,389,'_billing_last_name','Essel'),(2827,389,'_billing_company','Test Ekow'),(2828,389,'_billing_address_1','7 Sherman Cove'),(2829,389,'_billing_city','Maumelle'),(2830,389,'_billing_state','AR'),(2831,389,'_billing_postcode','72113'),(2832,389,'_billing_country','US'),(2833,389,'_billing_email','ekow@esselwebdesign.com'),(2834,389,'_billing_phone','2106851230'),(2835,389,'_edit_lock','1613516214:1'),(2836,389,'_transaction_id','pi_1ILcSi2EFiGxn5AOSxeJeAbs'),(2837,389,'_date_completed','1613516171'),(2838,389,'_date_paid','1613516171'),(2839,389,'_paid_date','2021-02-16 22:56:11'),(2840,389,'_completed_date','2021-02-16 22:56:11'),(2841,389,'_download_permissions_granted','yes'),(2842,389,'_recorded_sales','yes'),(2843,389,'_recorded_coupon_usage_counts','yes'),(2844,389,'_order_stock_reduced','yes'),(2845,389,'_intent_id','pi_1ILcSi2EFiGxn5AOSxeJeAbs'),(2846,389,'_charge_id','ch_1ILcSj2EFiGxn5AOYYQPsucH'),(2847,389,'_intention_status','succeeded'),(2848,389,'_wcpay_intent_currency','USD'),(2849,389,'_new_order_tracking_complete','yes'),(2850,389,'_customer_ip_address','69.222.196.79'),(2851,390,'_edit_lock','1613518516:1'),(2852,390,'_customer_user','0'),(2853,390,'_order_currency','USD'),(2854,390,'_order_shipping_tax','0'),(2855,390,'_order_tax','0'),(2856,390,'_order_total','1.00'),(2857,390,'_order_version','4.9.2'),(2858,390,'_prices_include_tax','no'),(2859,390,'_billing_address_index','Ekow Essel Test Company 7 Sherman  Maumelle  72113 US ekow@esselwebdesign.com 2106851230'),(2860,390,'_shipping_address_index','        '),(2861,390,'_cart_discount','0'),(2862,390,'_cart_discount_tax','0'),(2863,390,'_order_shipping','0'),(2864,390,'_edit_last','1'),(2865,390,'_order_key','wc_order_KU2lrAcwsEJR2'),(2866,390,'_payment_method','woocommerce_payments'),(2867,390,'_payment_method_title','Credit card'),(2868,390,'_created_via','admin'),(2869,390,'_billing_first_name','Ekow'),(2870,390,'_billing_last_name','Essel'),(2871,390,'_billing_company','Test Company'),(2872,390,'_billing_address_1','7 Sherman'),(2873,390,'_billing_city','Maumelle'),(2874,390,'_billing_postcode','72113'),(2875,390,'_billing_country','US'),(2876,390,'_billing_email','ekow@esselwebdesign.com'),(2877,390,'_billing_phone','2106851230'),(2878,391,'_edit_lock','1613519257:1'),(2879,391,'_customer_user','0'),(2880,391,'_order_currency','USD'),(2881,391,'_order_shipping_tax','0'),(2882,391,'_order_tax','0'),(2883,391,'_order_total','1.00'),(2884,391,'_order_version','4.9.2'),(2885,391,'_prices_include_tax','no'),(2886,391,'_billing_address_index','Ekow Essel  7 Sherman Cove  Maumelle AR 72113 US ekow@esselwebdesign.com 2106851230'),(2887,391,'_shipping_address_index','        '),(2888,391,'_cart_discount','0'),(2889,391,'_cart_discount_tax','0'),(2890,391,'_order_shipping','0'),(2891,391,'_edit_last','1'),(2892,391,'_order_key','wc_order_gJQPB068CFlTR'),(2893,391,'_payment_method','other'),(2894,391,'_payment_method_title','other'),(2895,391,'_created_via','admin'),(2896,391,'_billing_first_name','Ekow'),(2897,391,'_billing_last_name','Essel'),(2898,391,'_billing_address_1','7 Sherman Cove'),(2899,391,'_billing_city','Maumelle'),(2900,391,'_billing_state','AR'),(2901,391,'_billing_postcode','72113'),(2902,391,'_billing_country','US'),(2903,391,'_billing_email','ekow@esselwebdesign.com'),(2904,391,'_billing_phone','2106851230'),(2905,392,'_edit_lock','1613761458:1'),(2906,392,'_customer_user','0'),(2907,392,'_order_currency','USD'),(2908,392,'_order_shipping_tax','0'),(2909,392,'_order_tax','0'),(2910,392,'_order_total','1.00'),(2911,392,'_order_version','4.9.2'),(2912,392,'_prices_include_tax','no'),(2913,392,'_billing_address_index','Ekow Essel Essel Web Design 7 Sherman Cove  Maumelle AR 72113 US ekow@esselwebdesign.com 2106851230'),(2914,392,'_shipping_address_index','        '),(2915,392,'_cart_discount','0'),(2916,392,'_cart_discount_tax','0'),(2917,392,'_order_shipping','0'),(2918,392,'_edit_last','1'),(2919,392,'_order_key','wc_order_CVfpxJBMpJ3Q9'),(2920,392,'_created_via','admin'),(2921,392,'_billing_first_name','Ekow'),(2922,392,'_billing_last_name','Essel'),(2923,392,'_billing_company','Essel Web Design'),(2924,392,'_billing_address_1','7 Sherman Cove'),(2925,392,'_billing_city','Maumelle'),(2926,392,'_billing_state','AR'),(2927,392,'_billing_postcode','72113'),(2928,392,'_billing_country','US'),(2929,392,'_billing_email','ekow@esselwebdesign.com'),(2930,392,'_billing_phone','2106851230'),(2931,392,'_payment_method','cod'),(2932,392,'_payment_method_title','Check/Cash on delivery'),(2933,393,'_elementor_edit_mode','builder'),(2934,393,'_elementor_template_type','wp-page'),(2935,393,'_elementor_version','3.1.1'),(2936,393,'_wp_page_template','default'),(2937,393,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2938,393,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2940,394,'_elementor_edit_mode','builder'),(2941,394,'_elementor_template_type','wp-page'),(2942,394,'_elementor_version','3.1.1'),(2943,394,'_wp_page_template','default'),(2944,394,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2945,394,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"NATIONWIDE\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COMMERCIAL CLEANING\",\"_id\":\"c36c235\"},{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2947,395,'_elementor_edit_mode','builder'),(2948,395,'_elementor_template_type','wp-page'),(2949,395,'_elementor_version','3.1.1'),(2950,395,'_wp_page_template','default'),(2951,395,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2952,395,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2956,396,'_elementor_edit_mode','builder'),(2957,396,'_elementor_template_type','wp-page'),(2958,396,'_elementor_version','3.1.1'),(2959,396,'_wp_page_template','default'),(2960,396,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}');
INSERT INTO `wp_postmeta` VALUES (2961,396,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2963,397,'_elementor_edit_mode','builder'),(2964,397,'_elementor_template_type','wp-page'),(2965,397,'_elementor_version','3.1.1'),(2966,397,'_wp_page_template','default'),(2967,397,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2968,397,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/book-now\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2970,398,'_elementor_edit_mode','builder'),(2971,398,'_elementor_template_type','wp-page'),(2972,398,'_elementor_version','3.1.1'),(2973,398,'_wp_page_template','default'),(2974,398,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2975,398,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2978,399,'_wp_page_template','default'),(2979,399,'_elementor_edit_mode','builder'),(2980,399,'_elementor_template_type','wp-post'),(2981,399,'_elementor_version','3.1.1'),(2982,399,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2983,399,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We look forward to working with you.<br>Our associates are standing by.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2985,400,'_wp_page_template','default'),(2986,400,'_elementor_edit_mode','builder'),(2987,400,'_elementor_template_type','wp-post'),(2988,400,'_elementor_version','3.1.1'),(2989,400,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2990,400,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We look forward to working with you.<br>Our associates are standing by.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a><\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2992,401,'_wp_page_template','default'),(2993,401,'_elementor_edit_mode','builder'),(2994,401,'_elementor_template_type','wp-post'),(2995,401,'_elementor_version','3.1.1'),(2996,401,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2997,401,'_elementor_data','[{\"id\":\"779ce82\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00050A\"},\"elements\":[{\"id\":\"6307c38\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db16ab9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2ce4fb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3d23ecd\",\"elType\":\"widget\",\"settings\":{\"site_logo_fallback\":\"yes\",\"custom_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/Eco-Solution-Logo_transparent.png\",\"id\":124},\"site_logo_size_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"76e0099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a44d2dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0bce6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We look forward to working with you.<br>Our associates are standing by.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c86d16a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"501-444-2757\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"bb79df4\"},{\"text\":\"info@edssnow.com\",\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"_id\":\"6139dc2\"},{\"text\":\"Open 7 Days A Week\",\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"_id\":\"d4f24c1\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Helvetica\",\"icon_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2392822\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d31a60\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright &copy; 2021 Eco Solutions LLC | Website built by\\u00a0<a href=\\\"https:\\/\\/esselwebdesign.com\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Essel Web Design<\\/a>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2999,120,'_elementor_controls_usage','a:7:{s:9:\"site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:18:\"section_site_image\";a:3:{s:18:\"site_logo_fallback\";i:1;s:12:\"custom_image\";i:1;s:19:\"site_logo_size_size\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:10:\"text_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}s:18:\"section_text_style\";a:3:{s:26:\"icon_typography_typography\";i:1;s:27:\"icon_typography_font_family\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"style\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:1;}}}}}'),(3000,402,'_edit_lock','1613666988:1'),(3001,402,'_edit_last','1'),(3002,402,'site-sidebar-layout','no-sidebar'),(3003,402,'site-content-layout','page-builder'),(3004,402,'theme-transparent-header-meta','default'),(3005,402,'_elementor_edit_mode','builder'),(3006,402,'_elementor_template_type','wp-page'),(3007,402,'_elementor_version','3.1.1'),(3008,402,'_astra_content_layout_flag','disabled'),(3009,402,'site-post-title','disabled'),(3010,402,'ast-title-bar-display','disabled'),(3011,402,'ast-featured-img','disabled'),(3014,402,'_wp_page_template','default'),(3015,402,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3016,402,'_elementor_data','[{\"id\":\"f588da4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"619c198\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(3017,404,'_edit_lock','1614653651:1'),(3018,404,'_edit_last','1'),(3019,404,'site-sidebar-layout','no-sidebar'),(3020,404,'site-content-layout','page-builder'),(3021,404,'theme-transparent-header-meta','default'),(3022,404,'_elementor_edit_mode','builder'),(3023,404,'_elementor_template_type','wp-page'),(3024,404,'_elementor_version','3.1.1'),(3025,404,'_astra_content_layout_flag','disabled'),(3026,404,'site-post-title','disabled'),(3027,404,'ast-title-bar-display','disabled'),(3028,404,'ast-featured-img','disabled'),(3029,404,'_wp_page_template','default'),(3030,404,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3031,404,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Unlike conventional spraying methods using spray bottles and wipes,&nbsp;<\\/span><strong style=\\\"font-style: inherit;\\\">Tru<\\/strong><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage.<\\/span><br><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3032,406,'_wp_attached_file','2021/02/eco-solutions-how-to-open-schools.jpg'),(3033,407,'_wp_attached_file','2021/02/eco-solutions-how-to-open-schools-1.jpg'),(3034,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:47:\"2021/02/eco-solutions-how-to-open-schools-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"eco-solutions-how-to-open-schools-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"eco-solutions-how-to-open-schools-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3035,408,'_wp_attached_file','2021/02/tru-electrostatic-eco-solutions.png'),(3036,408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:560;s:4:\"file\";s:43:\"2021/02/tru-electrostatic-eco-solutions.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"tru-electrostatic-eco-solutions-1024x478.png\";s:5:\"width\";i:1024;s:6:\"height\";i:478;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-768x358.png\";s:5:\"width\";i:768;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-600x280.png\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-600x280.png\";s:5:\"width\";i:600;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"tru-electrostatic-eco-solutions-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3037,409,'_elementor_edit_mode','builder'),(3038,409,'_elementor_template_type','wp-page'),(3039,409,'_elementor_version','3.1.1'),(3040,409,'_wp_page_template','default'),(3041,409,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3042,409,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3043,410,'_elementor_edit_mode','builder'),(3044,410,'_elementor_template_type','wp-page'),(3045,410,'_elementor_version','3.1.1'),(3046,410,'_wp_page_template','default'),(3047,410,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3048,410,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3049,411,'_elementor_edit_mode','builder'),(3050,411,'_elementor_template_type','wp-page'),(3051,411,'_elementor_version','3.1.1'),(3052,411,'_wp_page_template','default'),(3053,411,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3054,411,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3057,412,'_elementor_edit_mode','builder'),(3058,412,'_elementor_template_type','wp-page'),(3059,412,'_elementor_version','3.1.1'),(3060,412,'_wp_page_template','default'),(3061,412,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3062,412,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3064,413,'_elementor_edit_mode','builder'),(3065,413,'_elementor_template_type','wp-page'),(3066,413,'_elementor_version','3.1.1'),(3067,413,'_wp_page_template','default'),(3068,413,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3069,413,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3071,414,'_elementor_edit_mode','builder'),(3072,414,'_elementor_template_type','wp-page'),(3073,414,'_elementor_version','3.1.1'),(3074,414,'_wp_page_template','default'),(3075,414,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3076,414,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3080,415,'_elementor_edit_mode','builder'),(3081,415,'_elementor_template_type','wp-page'),(3082,415,'_elementor_version','3.1.1'),(3083,415,'_wp_page_template','default'),(3084,415,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3085,415,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3087,416,'_elementor_edit_mode','builder'),(3088,416,'_elementor_template_type','wp-page'),(3089,416,'_elementor_version','3.1.1'),(3090,416,'_wp_page_template','default'),(3091,416,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3092,416,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3094,417,'_elementor_edit_mode','builder'),(3095,417,'_elementor_template_type','wp-page'),(3096,417,'_elementor_version','3.1.1'),(3097,417,'_wp_page_template','default'),(3098,417,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3099,417,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3103,418,'_menu_item_type','custom'),(3104,418,'_menu_item_menu_item_parent','0'),(3105,418,'_menu_item_object_id','418'),(3106,418,'_menu_item_object','custom'),(3107,418,'_menu_item_target',''),(3108,418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3109,418,'_menu_item_xfn',''),(3110,418,'_menu_item_url','#'),(3112,419,'_menu_item_type','post_type'),(3113,419,'_menu_item_menu_item_parent','418'),(3114,419,'_menu_item_object_id','404'),(3115,419,'_menu_item_object','page'),(3116,419,'_menu_item_target',''),(3117,419,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3118,419,'_menu_item_xfn',''),(3119,419,'_menu_item_url',''),(3121,420,'_elementor_edit_mode','builder'),(3122,420,'_elementor_template_type','wp-post'),(3123,420,'_elementor_version','3.1.1'),(3124,420,'_wp_page_template','default'),(3125,420,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3126,420,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3128,421,'_elementor_edit_mode','builder'),(3129,421,'_elementor_template_type','wp-post'),(3130,421,'_elementor_version','3.1.1'),(3131,421,'_wp_page_template','default'),(3132,421,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3133,421,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3135,422,'_elementor_edit_mode','builder'),(3136,422,'_elementor_template_type','wp-post'),(3137,422,'_elementor_version','3.1.1'),(3138,422,'_wp_page_template','default'),(3139,422,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3140,422,'_elementor_data','[{\"id\":\"b75d053\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#000000BD\"},\"elements\":[{\"id\":\"a662969\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"b334874\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"21a1453\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.760999999999999232613845379091799259185791015625},\"elements\":[{\"id\":\"614f5cb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"site-logo\"}],\"isInner\":true},{\"id\":\"0ae3e83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":73.4440000000000026147972675971686840057373046875},\"elements\":[{\"id\":\"02142cf\",\"elType\":\"widget\",\"settings\":{\"menu\":\"primary-menu\",\"navmenu_align\":\"right\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Raleway\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"menu_typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"color_menu_item\":\"#66C010\",\"color_menu_item_hover\":\"#A5ACAF\",\"color_menu_item_active\":\"#86FE13\",\"toggle_color\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#424242\",\"divider_border_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"navigation-menu\"}],\"isInner\":true},{\"id\":\"1be6bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":6.4610000000000002984279490192420780658721923828125},\"elements\":[{\"id\":\"9a83c16\",\"elType\":\"widget\",\"settings\":{\"layout\":\"icon\",\"placeholder\":\"Type & Hit Enter...\",\"_padding\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"input_typography_typography\":\"custom\",\"input_typography_font_family\":\"Roboto\",\"input_typography_font_weight\":\"600\",\"toggle_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"hfe-search-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(3142,325,'_elementor_controls_usage','a:5:{s:9:\"site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:15:\"navigation-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:1:{s:13:\"navmenu_align\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:8:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;}s:12:\"style_toggle\";a:1:{s:12:\"toggle_color\";i:1;}s:22:\"section_style_dropdown\";a:2:{s:30:\"background_color_dropdown_item\";i:1;s:20:\"divider_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:17:\"hfe-search-button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:22:\"section_general_fields\";a:1:{s:6:\"layout\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_input_style\";a:3:{s:27:\"input_typography_typography\";i:1;s:28:\"input_typography_font_family\";i:1;s:28:\"input_typography_font_weight\";i:1;}s:20:\"section_toggle_style\";a:1:{s:12:\"toggle_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(3144,423,'_elementor_edit_mode','builder'),(3145,423,'_elementor_template_type','wp-page'),(3146,423,'_elementor_version','3.1.1'),(3147,423,'_wp_page_template','default'),(3148,423,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3149,423,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3151,424,'_elementor_edit_mode','builder'),(3152,424,'_elementor_template_type','wp-page'),(3153,424,'_elementor_version','3.1.1'),(3154,424,'_wp_page_template','default'),(3155,424,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3156,424,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bd3c49b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e180e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0c916d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#66C010\",\"padding\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2d6e123\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fee8c5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>\\\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\\\"<\\/em><br \\/>\\u2013 Andrea Vela, SAISD Custodial Supervisor<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"08651cb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More About TruElectrostatic\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dce4988\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"be187aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"94f71de\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ac6980\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover how you can safely reopen your school today.\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3db2b5a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/emist.com\\/industries\\/education\\/?mc_cid=61f2582d8a&mc_eid=3377ffd323\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(3158,425,'_elementor_edit_mode','builder'),(3159,425,'_elementor_template_type','wp-page'),(3160,425,'_elementor_version','3.1.1'),(3161,425,'_wp_page_template','default'),(3162,425,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3163,425,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3166,426,'_elementor_edit_mode','builder'),(3167,426,'_elementor_template_type','wp-page'),(3168,426,'_elementor_version','3.1.1'),(3169,426,'_wp_page_template','default'),(3170,426,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3171,426,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><br><\\/p>\\n<p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(3173,427,'_elementor_edit_mode','builder'),(3174,427,'_elementor_template_type','wp-page'),(3175,427,'_elementor_version','3.1.1'),(3176,427,'_wp_page_template','default'),(3177,427,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3178,427,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><br><\\/p>\\n<p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Cleaning Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(3180,428,'_elementor_edit_mode','builder'),(3181,428,'_elementor_template_type','wp-page'),(3182,428,'_elementor_version','3.1.1'),(3183,428,'_wp_page_template','default'),(3184,428,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3185,428,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><br><\\/p>\\n<p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Dinfecting Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(3188,429,'_elementor_edit_mode','builder'),(3189,429,'_elementor_template_type','wp-page'),(3190,429,'_elementor_version','3.1.1'),(3191,429,'_wp_page_template','default'),(3192,429,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3193,429,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3194,430,'_elementor_edit_mode','builder'),(3195,430,'_elementor_template_type','wp-page'),(3196,430,'_elementor_version','3.1.1'),(3197,430,'_wp_page_template','default'),(3198,430,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3199,430,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<br \\/><br \\/>Schools around the country use EMist\\u00a0<strong>Tru<\\/strong>Electrostatic\\u2122 Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br \\/><br \\/>Unlike conventional spraying methods using spray bottles and wipes,\\u00a0<strong>Tru<\\/strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.<\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3200,431,'_elementor_edit_mode','builder'),(3201,431,'_elementor_template_type','wp-page'),(3202,431,'_elementor_version','3.1.1'),(3203,431,'_wp_page_template','default'),(3204,431,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3205,431,'_elementor_data','[{\"id\":\"9355b87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":407,\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/eco-solutions-how-to-open-schools-1.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\"},\"elements\":[{\"id\":\"03b03b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9dc239f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"af9a39d\",\"elType\":\"widget\",\"settings\":{\"title\":\"How To Safely Reopen Your School\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"99504ff\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d582047\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e591761\",\"elType\":\"widget\",\"settings\":{\"title\":\"President Joe Biden is pledging to reopen most K-12 schools within 100 days.\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"273daa9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>According to the EPA, \\\"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\\\"<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Unlike conventional spraying methods using spray bottles and wipes,&nbsp;<\\/span><strong style=\\\"font-style: inherit;\\\">Tru<\\/strong><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage.<\\/span><br><\\/p>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a45fdab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"cefb0e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7117903\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/tru-electrostatic-eco-solutions.png\",\"id\":408}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(3206,404,'_elementor_controls_usage','a:6:{s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:28:\"background_slideshow_gallery\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}}'),(3207,432,'_elementor_edit_mode','builder'),(3208,432,'_elementor_template_type','wp-page'),(3209,432,'_elementor_version','3.1.1'),(3210,432,'_wp_page_template','default'),(3211,432,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3212,432,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><br><\\/p>\\n<p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Dinfecting Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(3213,433,'_elementor_edit_mode','builder'),(3214,433,'_elementor_template_type','wp-page'),(3215,433,'_elementor_version','3.1.1'),(3216,433,'_wp_page_template','default'),(3217,433,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3218,433,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p>\\n<p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><br><\\/p>\\n<p>Day Porter Services<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Dinfecting Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(3219,434,'_elementor_edit_mode','builder'),(3220,434,'_elementor_template_type','wp-page'),(3221,434,'_elementor_version','3.1.1'),(3222,434,'_wp_page_template','default'),(3223,434,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3224,434,'_elementor_data','[{\"id\":\"9f875c2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-scaled.jpg\",\"id\":64},\"background_overlay_position\":\"bottom right\",\"background_overlay_attachment\":\"fixed\"},\"elements\":[{\"id\":\"396fe0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e7ad2f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us<br>\\n501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c7bede\",\"elType\":\"widget\",\"settings\":{\"style\":\"dots_tribal\",\"width\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]},\"align\":\"center\",\"look\":\"line_icon\",\"text\":\"Divider\",\"icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"color\":\"#002145\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8f19d8e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Emergency COVID-19 Disinfecting<\\/p><p><span style=\\\"font-style: inherit; font-weight: inherit;\\\">Speciality Cleaning<\\/span><\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"800\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb8583c\",\"elType\":\"widget\",\"settings\":{\"title\":\"fill out the form below\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d6fccd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"11d4222\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"780e0e2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone\",\"library\":\"fa-solid\"},\"title_text\":\"CALL\\/TEXT US\",\"description_text\":\"24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"8e50f55\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>501-444-2757<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b6d0feb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"437266f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"title_text\":\"EMAIL US\",\"description_text\":\"Email us if your questions and or concerns! We\'re great at responding quickly!\",\"primary_color\":\"#66C010\",\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Raleway\",\"title_typography_font_weight\":\"600\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Helvetica\",\"description_typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"6f1af82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>info@edssnow.com<\\/p>\",\"align\":\"center\",\"text_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dbd50d2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"63fdd01\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0e7c836\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"custom_title_description\":\"yes\",\"form_title\":\"\",\"form_title_custom\":\"Commercial Dinfecting Service Inquiry \"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false}]'),(3225,159,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:5:{s:5:\"style\";i:1;s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"icon\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:3;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:22:\"typography_font_weight\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}s:26:\"section_background_overlay\";a:4:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;s:29:\"background_overlay_attachment\";i:1;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:2;}s:21:\"section_style_content\";a:7:{s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:28:\"title_typography_font_family\";i:2;s:28:\"title_typography_font_weight\";i:2;s:33:\"description_typography_typography\";i:2;s:34:\"description_typography_font_family\";i:2;s:34:\"description_typography_font_weight\";i:2;}}}}s:10:\"eael-ninja\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_info_box\";a:4:{s:17:\"contact_form_list\";i:1;s:24:\"custom_title_description\";i:1;s:10:\"form_title\";i:1;s:17:\"form_title_custom\";i:1;}}}}}'),(3237,436,'_elementor_edit_mode','builder'),(3238,436,'_elementor_template_type','wp-page'),(3239,436,'_elementor_version','3.1.1'),(3240,436,'_wp_page_template','default'),(3241,436,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3242,436,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(3244,437,'_elementor_edit_mode','builder'),(3245,437,'_elementor_template_type','wp-page'),(3246,437,'_elementor_version','3.1.1'),(3247,437,'_wp_page_template','default'),(3248,437,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3249,437,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(3251,438,'_elementor_edit_mode','builder'),(3252,438,'_elementor_template_type','wp-page'),(3253,438,'_elementor_version','3.1.1'),(3254,438,'_wp_page_template','default'),(3255,438,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3256,438,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3e27be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0d55110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"183049c\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET BACK TO WORK\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e719244\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As America reopens, we will get your offices and facilities disinfected<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da8d3f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36818fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"CDC PROCEDURES\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9a14e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We GUARANTEE CDC Procedures are followed on every project we complete<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a2e9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe2043e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLEANED WITH LOVE\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ae50ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our cleaning\\/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(3261,439,'_elementor_edit_mode','builder'),(3262,439,'_elementor_template_type','wp-page'),(3263,439,'_elementor_version','3.1.1'),(3264,439,'_wp_page_template','default'),(3265,439,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3266,439,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3e27be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0d55110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"183049c\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET BACK TO WORK\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e719244\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As America reopens, we will get your offices and facilities disinfected<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da8d3f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36818fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"CDC PROCEDURES\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9a14e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We GUARANTEE CDC Procedures are followed on every project we complete<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a2e9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe2043e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLEANED WITH LOVE\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ae50ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our cleaning\\/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(3268,440,'_elementor_edit_mode','builder'),(3269,440,'_elementor_template_type','wp-page'),(3270,440,'_elementor_version','3.1.1'),(3271,440,'_wp_page_template','default'),(3272,440,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3273,440,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3e27be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0d55110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"183049c\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET BACK TO WORK\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e719244\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As America reopens, we will get your offices and facilities disinfected<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da8d3f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36818fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"CDC PROCEDURES\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9a14e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We GUARANTEE CDC Procedures are followed on every project we complete<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a2e9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe2043e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLEANED WITH LOVE\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ae50ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our cleaning\\/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(3275,441,'_elementor_edit_mode','builder'),(3276,441,'_elementor_template_type','wp-page'),(3277,441,'_elementor_version','3.1.1'),(3278,441,'_wp_page_template','default'),(3279,441,'_elementor_page_settings','a:1:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(3280,441,'_elementor_data','[{\"id\":\"d1ceade\",\"elType\":\"section\",\"settings\":{\"background_background\":\"video\",\"background_video_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\"},\"elements\":[{\"id\":\"4920e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7d0a2bc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"946d814\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"daea9e0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":175,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"4ba231f\",\"elType\":\"widget\",\"settings\":{\"eael_fancy_text_prefix\":\"ECO SOLUTIONS\",\"eael_fancy_text_strings\":[{\"eael_fancy_text_strings_text_field\":\"COVID-19 DISINFECTING\",\"_id\":\"0c36e10\"}],\"eael_fancy_text_suffix\":\"\",\"eael_fancy_text_prefix_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]},\"eael_fancy_text_strings_color\":\"#66C010\",\"eael_fancy_text_strings_typography_typography\":\"custom\",\"eael_fancy_text_strings_typography_font_family\":\"Raleway\",\"eael_fancy_text_strings_typography_font_size\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"eael_fancy_text_strings_typography_font_weight\":\"900\",\"eael_fancy_text_strings_typography_line_height\":{\"unit\":\"em\",\"size\":1.100000000000000088817841970012523233890533447265625,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"eael-fancy-text\"},{\"id\":\"39bea7e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#33333396\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"252507b\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"256f939\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4abeaac\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2f2f697\",\"elType\":\"widget\",\"settings\":{\"premium_video_box_link\":\"https:\\/\\/youtu.be\\/d7J_8Agv8fk\",\"playlist_id\":\"PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv\",\"channel_id\":\"UCXcJ9BeO2sKKHor7Q9VglTQ\",\"sticky_info_bar_text\":\"Watching: Sticky Video\",\"premium_video_box_img_effect\":\"zoomout\",\"premium_video_box_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/transparent_overlay.png\",\"id\":32},\"premium_video_box_description_text\":\"Play Video\",\"premium_video_box_play_icon_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"premium_video_box_loop\":\"yes\",\"premium_video_box_controls\":\"\"},\"elements\":[],\"widgetType\":\"premium-addon-video-box\"},{\"id\":\"42e64db\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32951c3\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"5e405ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f6e5793\",\"elType\":\"widget\",\"settings\":{\"title\":\"CALL OR TEXT US TODAY - 24\\/7 - 501-444-2757\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ddc7ab\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"67327c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"092818c\",\"elType\":\"widget\",\"settings\":{\"title\":\"-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcd35cb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b8781e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"246acb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Certified Services Include:\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"523c128\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"cc69e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0504898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"d8964da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c84e893\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f17c1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"76f23a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e348b2e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a5283a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"db25773\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9fdc7bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"60a71c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e14344\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5305a05\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"6750929\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"086bc27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"d798797\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b212e5d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"95b1c35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"dc3587f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"45932c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b02b72\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce543c1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1cbd877\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"62af6f6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"34660e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3d2e88d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7545493\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cf1b5e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4a3165e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0ed3031\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"5b5ed03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9fb285c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4d98d4a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c2c9dc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"176fff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1ab7139\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f6c4e94\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"bda8c72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"4649801\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"11ea07d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2893dcf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"08de352\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"110cdba\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"8a022c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"5413559\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f3ad6a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"63fa1b8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ea380f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"761fd2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f5f7e3b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"a21c504\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"585c5e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7e5a4c8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f7040af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"22f3775\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"42952d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3ada56b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e89e2d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e6549fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"bc6d251\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e43aed7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ec52736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f2f00a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c38f518\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d58cb1c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"96a1230\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"f23f736\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"90ceb4d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"517d658\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f3afd86\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7088ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"705826e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"123727f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"85e6aa6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"52431b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"67c2836\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"0b2b1a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2cf8ff3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a7f926c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"3715277\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"755f95c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"24e464c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fd173f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"animation\":\"slideInLeft\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbb14f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"ab75e9d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\"},\"elements\":[{\"id\":\"7687dec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"f370945\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-bolt\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"ccc9329\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"2134a03\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">TruElectrostatic Technology<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"157d85f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c528c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"09d684c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-pump-soap\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6e810c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"309e8ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Disinfecting<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b30711d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b148d26\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"a23fc54\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-spray-can\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"5678028\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"512e594\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Sanitizing<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c7db43\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d713013\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"c0c3761\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-water\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"492f80b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1b230b2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Steam Sterilization<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"258820e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38c6ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"fa079fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-users\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"734e016\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"1e44112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Trained Certified Professionals<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8aa90dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a4983a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"eed0878\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-check\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7232bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"cd7f46a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66fb4bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"e8bb5e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"cf655a8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-street-view\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"0f2f845\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"ca52281\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Safe Zone set-ups for small Meeting and gatherings<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a0d63cc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a51e6f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"0578460\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-signature\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"49a843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"46baec1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Insured<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f61597f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"98f7825\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\"},\"elements\":[{\"id\":\"bbb5b1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"38926bb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-book-open\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f7caf49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"fa8a926\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Free Consultation<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"8f36d30\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"07261ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"b68b667\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-certificate\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"f08e1c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"eb0c395\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Health-E Certification<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d2dbf99\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"color_text\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"c15cd7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"8360032\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shield-virus\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"e3e8214\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"a75a218\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">90-Day BIOPROTECT RTU protective coating<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"051fae8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"15\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"607b1f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2ef3469\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-check-circle\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"db12852\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"7cc6c91\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d7ae7ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba99e02\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"2692ea9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-check-double\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"2412777\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"700688e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Day Porter available<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b09a03c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"93c37aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"d75f79e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-calendar-day\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"9da583b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"3aa75ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Flexible scheduling<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1087716\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#A5ACAF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"29ccce0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"43aac0f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-shopping-bag\",\"library\":\"fa-solid\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"6731021\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"4d7844d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white;\\\">Assortment of PPE and Sanitizing supplies for recurring Partners<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9a0a096\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#002145\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"015\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b658a2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25},\"elements\":[{\"id\":\"285c1e0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-thumbs-up\",\"library\":\"fa-regular\"},\"primary_color\":\"#66C010\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"view\":\"stacked\",\"size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":true},{\"id\":\"7b02e7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":75},\"elements\":[{\"id\":\"b20967c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"font-style: inherit; font-weight: inherit; color: white);\\\">100% Satisfaction Guaranteed<\\/span>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0250c3f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7db8ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"228c8a1\",\"elType\":\"widget\",\"settings\":{\"text\":\"CLICK HERE TO SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75210fa\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dc1a471\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"aadac29\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e91d7c8\",\"elType\":\"widget\",\"settings\":{\"list\":[{\"list_title\":\"Commercial Office Buildings\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-building\",\"library\":\"fa-regular\"},\"_id\":\"b5ad030\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Retail Stores\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-store\",\"library\":\"fa-solid\"},\"_id\":\"45c88e3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"list_title\":\"Doctor\'s Offices\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hand-holding-medical\",\"library\":\"fa-solid\"},\"_id\":\"68ad9d3\",\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"5c76907\",\"list_title\":\"Restaurants\\/Bars\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-beer\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"596ba45\",\"list_title\":\"Hotels\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-hotel\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4c37f98\",\"list_title\":\"Schools\\/Daycare Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-school\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"4af2116\",\"list_title\":\"Municipalities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-city\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"81a1fa1\",\"list_title\":\"Banks\\/ATM\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-money-bill-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b9110b5\",\"list_title\":\"Rehabilitation\\/Nursing Facilities\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"b104480\",\"list_title\":\"Gyms\\/Health Clubs\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-dumbbell\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"86a08d3\",\"list_title\":\"Homes\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-home\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"65a3636\",\"list_title\":\"Auto\\/Fleet\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-car\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"da2f25c\",\"list_title\":\"Transportation\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-bus-alt\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"cade76c\",\"list_title\":\"Salon\\/Barber Shops\",\"premium_icon_list_font_updated\":{\"value\":\"fas fa-chair\",\"library\":\"fa-solid\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"},{\"_id\":\"48f4b60\",\"list_title\":\"And More...\",\"premium_icon_list_font_updated\":{\"value\":\"far fa-list-alt\",\"library\":\"fa-regular\"},\"list_text_icon\":\"New\",\"badge_title\":\"New\"}],\"layout_type\":\"row\",\"premium_icon_list_align\":\"center\",\"premium_icon_list_animation_switcher\":\"yes\",\"premium_icon_list_animation\":\"slideInLeft\",\"hover_effect_type\":\"grow\",\"icon_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"icon_color\":\"#000000\",\"list_title_typography_typography\":\"custom\",\"list_title_typography_font_family\":\"Roboto\",\"list_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"list_title_typography_font_weight\":\"400\",\"title_color\":\"#000000\",\"title_hover_color\":\"#66C010\",\"badge_background_style_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"premium-icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10b3f72\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f0f8e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"510eba0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/02\\/pexels-cdc-3992933-scaled.jpg\",\"id\":245}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"18d1fa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d867db7\",\"elType\":\"widget\",\"settings\":{\"title\":\"pricing\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":4.0999999999999996447286321199499070644378662109375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2fe8c5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices\\/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\",\"align\":\"center\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2.79999999999999982236431605997495353221893310546875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a8c752\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6ba6f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"51d9f4a\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55836a6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"643118d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"33a5976\",\"elType\":\"widget\",\"settings\":{\"title\":\"recurring cleaning schedule\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ef3f19b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"68920b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3401d13\",\"elType\":\"widget\",\"settings\":{\"title\":\"*weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"94e587e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"37dc661\",\"elType\":\"widget\",\"settings\":{\"title\":\"*bi-weekly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"095da10\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14270d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"*monthly\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f30201\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"9e17dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7996ed6\",\"elType\":\"widget\",\"settings\":{\"title\":\"One time or Recurring Disinfecting Services across the country. This includes our UV Light Disinfecting in Conjuction with our CDC Disinfecting Program\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3e27be\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"0d55110\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"183049c\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET BACK TO WORK\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e719244\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As America reopens, we will get your offices and facilities disinfected<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"da8d3f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"36818fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"CDC PROCEDURES\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9a14e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We GUARANTEE CDC Procedures are followed on every project we complete<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3a2e9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"fe2043e\",\"elType\":\"widget\",\"settings\":{\"title\":\"CLEANED WITH LOVE\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ae50ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our cleaning\\/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"902727a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-background-overlay-edssnow-1-scaled.jpg\",\"id\":101},\"background_overlay_position\":\"center center\"},\"elements\":[{\"id\":\"bad83d8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"722399c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":165,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dbcf68a\",\"elType\":\"widget\",\"settings\":{\"title\":\"THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72a8bb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"DISINFECTING<br>VS<br>SANITIZING\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.149999999999999911182158029987476766109466552734375,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"34545e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"aec9759\",\"elType\":\"widget\",\"settings\":{\"title\":\"disinfecting\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d003029\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Disinfecting <\\/strong>is for hard (non-porous) surfaces such as for example:<\\/p><ul><li>Counter Tops<\\/li><li>Tile<\\/li><li>Hardwood<\\/li><li>Metal<\\/li><li>Glass and other<\\/li><\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1f348b\",\"elType\":\"widget\",\"settings\":{\"title\":\"sanitizing\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd612cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Sanitizing<\\/strong> is for (porous) surfaces such as for example:<\\/p>\\n<ul>\\n<li>Cloth Upholstery<\\/li>\\n<li>Carpet<\\/li>\\n<li>Rugs<\\/li>\\n<li>Drapes and other<\\/li>\\n<\\/ul>\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Helvetica\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6247e23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.<\\/em><\\/p>\",\"text_color\":\"#F20000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_decoration\":\"underline\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8000000000000000444089209850062616169452667236328125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"deba73b\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"728d558\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5452497\",\"elType\":\"widget\",\"settings\":{\"title\":\"All your Disinfecting, Sanitizing and PPE Supplies at a single source.\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"801a796\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"1654979\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8eec8d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"The White House is being disinfected by using the EMIST TruElectrostatic Sprayers\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd337bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA<\\/strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ed56ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\",\"link\":{\"url\":\"http:\\/\\/edssnow.com\\/truelectrostatic\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"90419e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2ffd778\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":89,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/disinfecting-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"dfd427a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"ea53d23\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":345,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8c16e17\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c1c0c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e6cb23\",\"elType\":\"section\",\"settings\":{\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":88,\"url\":\"http:\\/\\/edssnow.com\\/wp-content\\/uploads\\/2021\\/01\\/epa-fda-edssnow.png\"}],\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"33f7dc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0788707\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0bbd89d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"8ebbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"EPA\\/ FDA \\/ WTO REGISTERED DISINFECTANTS\",\"align\":\"center\",\"title_color\":\"#002145\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e5958d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul style=\\\"font-size: 15px; font-style: normal; font-weight: 400;\\\"><li style=\\\"font-size: 15px;\\\">WALTZ-D meets the EPA\\u2019s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA\\u2019s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.<\\/li><li style=\\\"font-size: 15px;\\\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.<\\/li><li style=\\\"font-size: 15px;\\\">High pressure Steam<\\/li><\\/ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment <\\/strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.<\\/strong><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Archivo\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"faa295b\",\"elType\":\"widget\",\"settings\":{\"text\":\"SCHEDULE A FREE CONSULTATION\",\"link\":{\"url\":\"https:\\/\\/edssnow.com\\/booking\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"background_color\":\"#002145\",\"button_background_hover_color\":\"#66C010\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be313dc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"dac9887\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"264b8e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"For immediate response<br>\\nContact us using the form below\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"900\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304e8e\",\"elType\":\"widget\",\"settings\":{\"contact_form_list\":\"1\",\"form_title\":\"\"},\"elements\":[],\"widgetType\":\"eael-ninja\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f29847\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c8221dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dc1952a\",\"elType\":\"widget\",\"settings\":{\"title\":\"We look forward to working with YOU!\",\"align\":\"center\",\"title_color\":\"#66C010\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(3282,15,'_elementor_controls_usage','a:12:{s:6:\"spacer\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:6;}}s:8:\"advanced\";a:1:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:5;s:11:\"hide_tablet\";i:2;}}}}s:15:\"eael-fancy-text\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:23:\"eael_fancy_text_content\";a:3:{s:22:\"eael_fancy_text_prefix\";i:1;s:23:\"eael_fancy_text_strings\";i:1;s:22:\"eael_fancy_text_suffix\";i:1;}}s:5:\"style\";a:2:{s:29:\"eael_fancy_text_prefix_styles\";a:6:{s:28:\"eael_fancy_text_prefix_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}s:30:\"eael_fancy_text_strings_styles\";a:6:{s:29:\"eael_fancy_text_strings_color\";i:1;s:45:\"eael_fancy_text_strings_typography_typography\";i:1;s:46:\"eael_fancy_text_strings_typography_font_family\";i:1;s:44:\"eael_fancy_text_strings_typography_font_size\";i:1;s:46:\"eael_fancy_text_strings_typography_font_weight\";i:1;s:46:\"eael_fancy_text_strings_typography_line_height\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:42;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:42;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:21;s:10:\"text_color\";i:37;s:21:\"typography_typography\";i:41;s:22:\"typography_font_family\";i:41;s:22:\"typography_font_weight\";i:41;s:22:\"typography_line_height\";i:4;s:20:\"typography_font_size\";i:3;s:26:\"typography_text_decoration\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:33;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:4:\"link\";i:4;s:5:\"align\";i:4;s:4:\"size\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:4;s:29:\"button_background_hover_color\";i:4;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:98;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:98;}}}}s:23:\"premium-addon-video-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:34:\"premium_video_box_general_settings\";a:4:{s:22:\"premium_video_box_link\";i:1;s:28:\"premium_video_box_img_effect\";i:1;s:22:\"premium_video_box_loop\";i:1;s:26:\"premium_video_box_controls\";i:1;}s:32:\"premium_video_box_image_settings\";a:1:{s:23:\"premium_video_box_image\";i:1;}}s:5:\"style\";a:1:{s:28:\"premium_video_box_icon_style\";a:1:{s:32:\"premium_video_box_play_icon_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:55;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:41;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:35;s:21:\"background_video_link\";i:1;s:16:\"background_color\";i:32;s:28:\"background_slideshow_gallery\";i:2;}s:12:\"section_typo\";a:1:{s:10:\"color_text\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_image\";i:1;s:27:\"background_overlay_position\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:8;s:6:\"margin\";i:28;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:19:\"_section_responsive\";a:3:{s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:23;s:5:\"align\";i:21;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:23;s:21:\"typography_typography\";i:23;s:22:\"typography_font_family\";i:23;s:22:\"typography_font_weight\";i:23;s:25:\"typography_letter_spacing\";i:20;s:20:\"typography_font_size\";i:11;s:25:\"typography_text_transform\";i:13;s:22:\"typography_line_height\";i:14;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:10;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:32;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:13:\"selected_icon\";i:32;s:4:\"view\";i:32;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:32;s:4:\"size\";i:32;}}s:8:\"advanced\";a:1:{s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:32;}}}}s:17:\"premium-icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:18:\"list_items_section\";a:1:{s:4:\"list\";i:1;}s:23:\"display_options_section\";a:5:{s:11:\"layout_type\";i:1;s:23:\"premium_icon_list_align\";i:1;s:36:\"premium_icon_list_animation_switcher\";i:1;s:27:\"premium_icon_list_animation\";i:1;s:17:\"hover_effect_type\";i:1;}}s:5:\"style\";a:3:{s:18:\"icon_style_section\";a:2:{s:9:\"icon_size\";i:1;s:10:\"icon_color\";i:1;}s:19:\"title_style_section\";a:6:{s:32:\"list_title_typography_typography\";i:1;s:33:\"list_title_typography_font_family\";i:1;s:31:\"list_title_typography_font_size\";i:1;s:33:\"list_title_typography_font_weight\";i:1;s:11:\"title_color\";i:1;s:17:\"title_hover_color\";i:1;}s:19:\"badge_style_section\";a:1:{s:28:\"badge_background_style_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:10:\"eael-ninja\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"section_info_box\";a:2:{s:17:\"contact_form_list\";i:1;s:10:\"form_title\";i:1;}}}}}'),(3305,10,'_elementor_css','a:6:{s:4:\"time\";i:1615374965;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3306,15,'_elementor_css','a:6:{s:4:\"time\";i:1615374968;s:5:\"fonts\";a:5:{i:0;s:7:\"Raleway\";i:2;s:13:\"Abril Fatface\";i:38;s:6:\"Roboto\";i:40;s:7:\"Archivo\";i:56;s:9:\"Helvetica\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3307,325,'_elementor_css','a:6:{s:4:\"time\";i:1615374968;s:5:\"fonts\";a:2:{i:0;s:7:\"Raleway\";i:1;s:6:\"Roboto\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:1;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3308,120,'_elementor_css','a:6:{s:4:\"time\";i:1615374968;s:5:\"fonts\";a:2:{i:0;s:7:\"Raleway\";i:1;s:9:\"Helvetica\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:2;s:10:\"fa-regular\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3309,187,'_elementor_css','a:7:{s:4:\"time\";i:1615404506;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(3310,159,'_elementor_css','a:6:{s:4:\"time\";i:1615417411;s:5:\"fonts\";a:2:{i:0;s:7:\"Raleway\";i:1;s:9:\"Helvetica\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3311,404,'_elementor_css','a:6:{s:4:\"time\";i:1615534340;s:5:\"fonts\";a:3:{i:0;s:6:\"Roboto\";i:1;s:13:\"Abril Fatface\";i:2;s:7:\"Raleway\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3312,376,'_elementor_css','a:6:{s:4:\"time\";i:1615580007;s:5:\"fonts\";a:1:{i:0;s:7:\"Raleway\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3313,443,'_field_1','Cindy Farrell'),(3314,443,'_field_2','flutemama22@gmail.com'),(3315,443,'_field_5','6128400309'),(3316,443,'_field_6','Residential single family home, one story'),(3317,443,'_field_7','26 Colony Road'),(3318,443,'_field_8',''),(3319,443,'_field_9','Little Rock'),(3320,443,'_field_10','AR'),(3321,443,'_field_11','72227'),(3322,443,'_field_12','Not sure'),(3323,443,'_field_13','What it takes'),(3324,443,'_field_16','single family one story residential home'),(3325,443,'_field_3','Horrendous pet odor.  2 dogs and 3 cats living in the house;  the dogs and one un-neutered male cat will be leaving today or tomorrow and we need the house, but mainly that room, fumigated. '),(3326,443,'_form_id','1'),(3327,443,'_seq_num','1'),(3328,43,'_elementor_css','a:6:{s:4:\"time\";i:1615707208;s:5:\"fonts\";a:3:{i:0;s:7:\"Raleway\";i:1;s:9:\"Helvetica\";i:2;s:13:\"Abril Fatface\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3329,82,'_elementor_css','a:6:{s:4:\"time\";i:1616004480;s:5:\"fonts\";a:1:{i:0;s:7:\"Raleway\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3330,277,'_elementor_css','a:6:{s:4:\"time\";i:1616291703;s:5:\"fonts\";a:2:{i:0;s:7:\"Raleway\";i:1;s:9:\"Helvetica\";}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=444 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (2,1,'2021-01-24 22:00:33','2021-01-24 22:00:33','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://edssnow.com/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','','','2021-01-24 22:00:33','2021-01-24 22:00:33','',0,'http://edssnow.com/?page_id=2',0,'page','',0),(3,1,'2021-01-24 22:00:33','2021-01-24 22:00:33','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://edssnow.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-01-24 22:00:33','2021-01-24 22:00:33','',0,'http://edssnow.com/?page_id=3',0,'page','',0),(5,1,'2021-01-24 23:46:11','2021-01-24 23:46:11','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-01-24 23:46:11','2021-01-24 23:46:11','',0,'http://edssnow.com/wp-content/uploads/2021/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(6,1,'2021-01-24 23:46:13','2021-01-24 23:46:13','','Shop','','publish','closed','closed','','shop','','','2021-01-24 23:46:13','2021-01-24 23:46:13','',0,'http://edssnow.com/shop/',0,'page','',0),(7,1,'2021-01-24 23:46:13','2021-01-24 23:46:13','<!-- wp:shortcode -->[woocommerce_cart]<!-- /wp:shortcode -->','Cart','','publish','closed','closed','','cart','','','2021-01-24 23:46:13','2021-01-24 23:46:13','',0,'http://edssnow.com/cart/',0,'page','',0),(8,1,'2021-01-24 23:46:13','2021-01-24 23:46:13','<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->','Checkout','','publish','closed','closed','','checkout','','','2021-01-24 23:46:13','2021-01-24 23:46:13','',0,'http://edssnow.com/checkout/',0,'page','',0),(9,1,'2021-01-24 23:46:13','2021-01-24 23:46:13','<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->','My account','','publish','closed','closed','','my-account','','','2021-01-24 23:46:13','2021-01-24 23:46:13','',0,'http://edssnow.com/my-account/',0,'page','',0),(10,0,'2021-01-25 05:44:49','2021-01-25 05:44:49','','Default Kit','','publish','closed','closed','','default-kit','','','2021-03-02 02:33:14','2021-03-02 02:33:14','',0,'http://edssnow.com/?elementor_library=default-kit',0,'elementor_library','',0),(12,1,'2021-01-27 11:34:36','0000-00-00 00:00:00','','Elementor #12','','draft','closed','closed','','','','','2021-01-27 11:34:36','2021-01-27 11:34:36','',0,'http://edssnow.com/?page_id=12',0,'page','',0),(13,1,'2021-01-27 11:34:34','2021-01-27 11:34:34','','Elementor #12','','inherit','closed','closed','','12-revision-v1','','','2021-01-27 11:34:34','2021-01-27 11:34:34','',12,'http://edssnow.com/2021/01/27/12-revision-v1/',0,'revision','',0),(15,1,'2021-01-27 11:52:06','2021-01-27 11:52:06','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>One time or Recurring Disinfecting Services across the country. This includes our UV Light Disinfecting in Conjuction with our CDC Disinfecting Program</h2>		\n			<h2>GET BACK TO WORK</h2>		\n		<p>As America reopens, we will get your offices and facilities disinfected</p>		\n			<h2>CDC PROCEDURES</h2>		\n		<p>We GUARANTEE CDC Procedures are followed on every project we complete</p>		\n			<h2>CLEANED WITH LOVE</h2>		\n		<p>Our cleaning/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','publish','closed','closed','','home-page','','','2021-03-02 02:19:04','2021-03-02 02:19:04','',0,'http://edssnow.com/?page_id=15',0,'page','',0),(16,1,'2021-01-27 11:44:33','2021-01-27 11:44:33','','Elementor #15','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 11:44:33','2021-01-27 11:44:33','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(17,1,'2021-01-27 11:54:28','2021-01-27 11:54:28','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 11:54:28','2021-01-27 11:54:28','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(18,1,'2021-01-27 11:54:28','2021-01-27 11:54:28','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 11:54:28','2021-01-27 11:54:28','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(19,1,'2021-01-27 11:54:29','2021-01-27 11:54:29','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 11:54:29','2021-01-27 11:54:29','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(21,1,'2021-01-27 12:11:00','2021-01-27 12:11:00','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 12:11:00','2021-01-27 12:11:00','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(22,1,'2021-01-27 12:11:00','2021-01-27 12:11:00','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 12:11:00','2021-01-27 12:11:00','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(23,1,'2021-01-27 12:11:00','2021-01-27 12:11:00','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 12:11:00','2021-01-27 12:11:00','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(25,1,'2021-01-27 13:08:23','2021-01-27 13:08:23','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 13:08:23','2021-01-27 13:08:23','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(26,1,'2021-01-27 13:08:23','2021-01-27 13:08:23','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 13:08:23','2021-01-27 13:08:23','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(27,1,'2021-01-27 13:08:24','2021-01-27 13:08:24','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 13:08:24','2021-01-27 13:08:24','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(28,1,'2021-01-27 13:08:38','2021-01-27 13:08:38','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 13:08:38','2021-01-27 13:08:38','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(29,1,'2021-01-27 13:08:39','2021-01-27 13:08:39','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 13:08:39','2021-01-27 13:08:39','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(30,1,'2021-01-27 13:08:40','2021-01-27 13:08:40','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 13:08:40','2021-01-27 13:08:40','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(32,1,'2021-01-27 14:18:49','2021-01-27 14:18:49','','transparent_overlay','','inherit','open','closed','','transparent_overlay','','','2021-01-27 14:18:49','2021-01-27 14:18:49','',15,'http://edssnow.com/wp-content/uploads/2021/01/transparent_overlay.png',0,'attachment','image/png',0),(33,1,'2021-01-27 14:20:29','2021-01-27 14:20:29','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:20:29','2021-01-27 14:20:29','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(34,1,'2021-01-27 14:20:29','2021-01-27 14:20:29','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<a href=\"https://youtu.be/d7J_8Agv8fk\">\n						</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:20:29','2021-01-27 14:20:29','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(35,1,'2021-01-27 14:20:30','2021-01-27 14:20:30','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:20:30','2021-01-27 14:20:30','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(37,1,'2021-01-27 14:50:25','2021-01-27 14:50:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:50:25','2021-01-27 14:50:25','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(38,1,'2021-01-27 14:50:26','2021-01-27 14:50:26','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:50:26','2021-01-27 14:50:26','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(39,1,'2021-01-27 14:50:27','2021-01-27 14:50:27','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:50:27','2021-01-27 14:50:27','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(40,1,'2021-01-27 14:50:57','2021-01-27 14:50:57','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:50:57','2021-01-27 14:50:57','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(41,1,'2021-01-27 14:50:57','2021-01-27 14:50:57','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:50:57','2021-01-27 14:50:57','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(42,1,'2021-01-27 14:50:58','2021-01-27 14:50:58','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-27 14:50:58','2021-01-27 14:50:58','',15,'http://edssnow.com/2021/01/27/15-revision-v1/',0,'revision','',0),(43,1,'2021-01-27 19:55:41','2021-01-27 19:55:41','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong style=\"font-style: inherit;\">ECO Solutions&nbsp;</strong>is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;using environmentally safe and CDC-approved disinfecting agents and recommended methods.<br></p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;CDC&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','publish','closed','closed','','about','','','2021-02-02 15:07:13','2021-02-02 15:07:13','',0,'http://edssnow.com/?page_id=43',0,'page','',0),(44,1,'2021-01-27 19:50:35','2021-01-27 19:50:35','','Elementor #43','','inherit','closed','closed','','43-revision-v1','','','2021-01-27 19:50:35','2021-01-27 19:50:35','',43,'http://edssnow.com/2021/01/27/43-revision-v1/',0,'revision','',0),(45,1,'2021-01-27 19:52:16','2021-01-27 19:52:16','','About','','inherit','closed','closed','','43-revision-v1','','','2021-01-27 19:52:16','2021-01-27 19:52:16','',43,'http://edssnow.com/2021/01/27/43-revision-v1/',0,'revision','',0),(46,1,'2021-01-27 19:55:32','2021-01-27 19:55:32','<!-- wp:paragraph -->\n<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by <span style=\"color:#66c010\" class=\"has-inline-color\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.</span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><span style=\"color:#66c010\" class=\"has-inline-color\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating</span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the <span style=\"color:#66c010\" class=\"has-inline-color\">CDC</span> as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>\n<!-- /wp:paragraph -->','About','','inherit','closed','closed','','43-revision-v1','','','2021-01-27 19:55:32','2021-01-27 19:55:32','',43,'http://edssnow.com/2021/01/27/43-revision-v1/',0,'revision','',0),(52,1,'2021-01-31 01:09:37','2021-01-31 01:09:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:09:37','2021-01-31 01:09:37','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(53,1,'2021-01-31 01:09:37','2021-01-31 01:09:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		<p>TruElectrostatic Technology<br></p>		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		<p>Free Consultation</p>		\n		<p>Health-E Certification</p>		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:09:37','2021-01-31 01:09:37','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(54,1,'2021-01-31 01:09:37','2021-01-31 01:09:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:09:37','2021-01-31 01:09:37','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(55,1,'2021-01-31 01:12:02','2021-01-31 01:12:02','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:12:02','2021-01-31 01:12:02','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(56,1,'2021-01-31 01:12:02','2021-01-31 01:12:02','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		<p>90-Day BIOPROTECT RTU protective coating</p>		\n		<p>Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants</p>		\n		<p>Day Porter available</p>		\n		<p>Flexible scheduling</p>		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:12:02','2021-01-31 01:12:02','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(57,1,'2021-01-31 01:12:02','2021-01-31 01:12:02','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:12:02','2021-01-31 01:12:02','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(58,1,'2021-01-31 01:12:32','2021-01-31 01:12:32','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:12:32','2021-01-31 01:12:32','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(59,1,'2021-01-31 01:12:33','2021-01-31 01:12:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		<p>Assortment of PPE and Sanitizing supplies for recurring Partners</p>		\n		<p>100% Satisfaction Guaranteed</p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:12:33','2021-01-31 01:12:33','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(60,1,'2021-01-31 01:12:33','2021-01-31 01:12:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:12:33','2021-01-31 01:12:33','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(61,1,'2021-01-31 01:22:53','2021-01-31 01:22:53','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:22:53','2021-01-31 01:22:53','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(62,1,'2021-01-31 01:22:53','2021-01-31 01:22:53','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:22:53','2021-01-31 01:22:53','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(63,1,'2021-01-31 01:22:54','2021-01-31 01:22:54','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:22:54','2021-01-31 01:22:54','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(64,1,'2021-01-31 01:35:25','2021-01-31 01:35:25','','disinfecting-background-overlay-edssnow','','inherit','open','closed','','disinfecting-background-overlay-edssnow','','','2021-01-31 01:35:25','2021-01-31 01:35:25','',15,'http://edssnow.com/wp-content/uploads/2021/01/disinfecting-background-overlay-edssnow.jpg',0,'attachment','image/jpeg',0),(66,1,'2021-01-31 01:48:38','2021-01-31 01:48:38','','disinfecting-background--edssnow','','inherit','open','closed','','disinfecting-background-edssnow','','','2021-01-31 01:48:38','2021-01-31 01:48:38','',15,'http://edssnow.com/wp-content/uploads/2021/01/disinfecting-background-edssnow.jpg',0,'attachment','image/jpeg',0),(67,1,'2021-01-31 01:53:21','2021-01-31 01:53:21','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:53:21','2021-01-31 01:53:21','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(68,1,'2021-01-31 01:53:21','2021-01-31 01:53:21','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:53:21','2021-01-31 01:53:21','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(69,1,'2021-01-31 01:53:21','2021-01-31 01:53:21','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:53:21','2021-01-31 01:53:21','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(70,1,'2021-01-31 01:54:56','2021-01-31 01:54:56','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:54:56','2021-01-31 01:54:56','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(71,1,'2021-01-31 01:54:56','2021-01-31 01:54:56','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:54:56','2021-01-31 01:54:56','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(72,1,'2021-01-31 01:54:57','2021-01-31 01:54:57','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:54:57','2021-01-31 01:54:57','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(73,1,'2021-01-31 01:55:25','2021-01-31 01:55:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:55:25','2021-01-31 01:55:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(74,1,'2021-01-31 01:55:25','2021-01-31 01:55:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:55:25','2021-01-31 01:55:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(75,1,'2021-01-31 01:55:25','2021-01-31 01:55:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:55:25','2021-01-31 01:55:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(76,1,'2021-01-31 01:55:59','2021-01-31 01:55:59','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:55:59','2021-01-31 01:55:59','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(77,1,'2021-01-31 01:55:59','2021-01-31 01:55:59','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:55:59','2021-01-31 01:55:59','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(78,1,'2021-01-31 01:55:59','2021-01-31 01:55:59','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:55:59','2021-01-31 01:55:59','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(79,1,'2021-01-31 01:56:47','2021-01-31 01:56:47','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:56:47','2021-01-31 01:56:47','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(80,1,'2021-01-31 01:56:47','2021-01-31 01:56:47','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:56:47','2021-01-31 01:56:47','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(81,1,'2021-01-31 01:56:48','2021-01-31 01:56:48','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 01:56:48','2021-01-31 01:56:48','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(82,1,'2021-01-31 01:58:47','2021-01-31 01:58:47','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p></p>\n<p><br></p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>\n<p>NOT ALL SPRAYERS ARE THE SAME!</p>\n<p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p>\n<p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','publish','closed','closed','','truelectrostatic','','','2021-02-09 03:45:45','2021-02-09 03:45:45','',0,'http://edssnow.com/?page_id=82',0,'page','',0),(83,1,'2021-01-31 01:58:44','2021-01-31 01:58:44','','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-01-31 01:58:44','2021-01-31 01:58:44','',82,'http://edssnow.com/2021/01/31/82-revision-v1/',0,'revision','',0),(84,1,'2021-01-31 02:00:52','2021-01-31 02:00:52','','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-01-31 02:00:52','2021-01-31 02:00:52','',82,'http://edssnow.com/2021/01/31/82-revision-v1/',0,'revision','',0),(85,1,'2021-01-31 02:00:52','2021-01-31 02:00:52','','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-01-31 02:00:52','2021-01-31 02:00:52','',82,'http://edssnow.com/2021/01/31/82-revision-v1/',0,'revision','',0),(86,1,'2021-01-31 02:00:52','2021-01-31 02:00:52','<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p> </p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-01-31 02:00:52','2021-01-31 02:00:52','',82,'http://edssnow.com/2021/01/31/82-revision-v1/',0,'revision','',0),(88,1,'2021-01-31 03:56:31','2021-01-31 03:56:31','','epa-fda-edssnow','','inherit','open','closed','','epa-fda-edssnow','','','2021-01-31 03:56:31','2021-01-31 03:56:31','',15,'http://edssnow.com/wp-content/uploads/2021/01/epa-fda-edssnow.png',0,'attachment','image/png',0),(89,1,'2021-01-31 04:06:46','2021-01-31 04:06:46','','disinfecting-edssnow','','inherit','open','closed','','disinfecting-edssnow','','','2021-01-31 04:06:46','2021-01-31 04:06:46','',15,'http://edssnow.com/wp-content/uploads/2021/01/disinfecting-edssnow.png',0,'attachment','image/png',0),(90,1,'2021-01-31 04:13:35','2021-01-31 04:13:35','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:13:35','2021-01-31 04:13:35','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(91,1,'2021-01-31 04:13:35','2021-01-31 04:13:35','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:13:35','2021-01-31 04:13:35','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(92,1,'2021-01-31 04:13:36','2021-01-31 04:13:36','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul><li>WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li>BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li>All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li>High pressure Steam</li></ul>		\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p><p><strong>We Use Environmentally Safe Disinfectants registered by the EPA list N, FDA, and the WTO. We follow the updated CDC guidelines for Disinfecting and Sanitizing to kill the Coronavirus that causes Covid-19, SARS and MERS and more. </strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:13:36','2021-01-31 04:13:36','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(93,1,'2021-01-31 04:19:25','2021-01-31 04:19:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul><li>WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li>BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li>All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li>High pressure Steam</li></ul>		\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p><p><strong>We Use Environmentally Safe Disinfectants registered by the EPA list N, FDA, and the WTO. We follow the updated CDC guidelines for Disinfecting and Sanitizing to kill the Coronavirus that causes Covid-19, SARS and MERS and more. </strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:19:25','2021-01-31 04:19:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(94,1,'2021-01-31 04:19:25','2021-01-31 04:19:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul><li>WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li>BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li>All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li>High pressure Steam</li></ul>		\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p><p><strong>We Use Environmentally Safe Disinfectants registered by the EPA list N, FDA, and the WTO. We follow the updated CDC guidelines for Disinfecting and Sanitizing to kill the Coronavirus that causes Covid-19, SARS and MERS and more. </strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:19:25','2021-01-31 04:19:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(95,1,'2021-01-31 04:19:25','2021-01-31 04:19:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:19:25','2021-01-31 04:19:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(96,1,'2021-01-31 04:20:25','2021-01-31 04:20:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:20:25','2021-01-31 04:20:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(97,1,'2021-01-31 04:20:25','2021-01-31 04:20:25','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:20:25','2021-01-31 04:20:25','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(98,1,'2021-01-31 04:20:26','2021-01-31 04:20:26','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:20:26','2021-01-31 04:20:26','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(101,1,'2021-01-31 04:45:30','2021-01-31 04:45:30','','disinfecting-background-overlay-edssnow','','inherit','open','closed','','disinfecting-background-overlay-edssnow-2','','','2021-01-31 04:45:30','2021-01-31 04:45:30','',15,'http://edssnow.com/wp-content/uploads/2021/01/disinfecting-background-overlay-edssnow-1.jpg',0,'attachment','image/jpeg',0),(102,1,'2021-01-31 04:46:33','2021-01-31 04:46:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:46:33','2021-01-31 04:46:33','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(103,1,'2021-01-31 04:46:33','2021-01-31 04:46:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:46:33','2021-01-31 04:46:33','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(104,1,'2021-01-31 04:46:33','2021-01-31 04:46:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 04:46:33','2021-01-31 04:46:33','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(105,1,'2021-01-31 05:04:52','2021-01-31 05:04:52','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:04:52','2021-01-31 05:04:52','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(106,1,'2021-01-31 05:04:52','2021-01-31 05:04:52','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:04:52','2021-01-31 05:04:52','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(107,1,'2021-01-31 05:04:52','2021-01-31 05:04:52','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotel \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n							</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:04:52','2021-01-31 05:04:52','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(108,1,'2021-01-31 05:05:50','2021-01-31 05:05:50','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotel \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n							</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:05:50','2021-01-31 05:05:50','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(109,1,'2021-01-31 05:05:50','2021-01-31 05:05:50','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotel \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n							</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:05:50','2021-01-31 05:05:50','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(110,1,'2021-01-31 05:05:50','2021-01-31 05:05:50','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:05:50','2021-01-31 05:05:50','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(111,1,'2021-01-31 05:06:34','2021-01-31 05:06:34','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:06:34','2021-01-31 05:06:34','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(112,1,'2021-01-31 05:06:34','2021-01-31 05:06:34','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>WE Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:06:34','2021-01-31 05:06:34','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(113,1,'2021-01-31 05:06:35','2021-01-31 05:06:35','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:06:35','2021-01-31 05:06:35','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(114,1,'2021-01-31 05:07:17','2021-01-31 05:07:17','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:07:17','2021-01-31 05:07:17','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(115,1,'2021-01-31 05:07:17','2021-01-31 05:07:17','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:07:17','2021-01-31 05:07:17','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(116,1,'2021-01-31 05:07:17','2021-01-31 05:07:17','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-01-31 05:07:17','2021-01-31 05:07:17','',15,'http://edssnow.com/2021/01/31/15-revision-v1/',0,'revision','',0),(117,1,'2021-02-01 12:24:11','2021-02-01 12:24:11','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 12:24:11','2021-02-01 12:24:11','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(118,1,'2021-02-01 12:24:11','2021-02-01 12:24:11','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 12:24:11','2021-02-01 12:24:11','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(119,1,'2021-02-01 12:24:12','2021-02-01 12:24:12','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 12:24:12','2021-02-01 12:24:12','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(120,1,'2021-02-01 12:34:43','2021-02-01 12:34:43','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"https://edssnow.com\">\n					<img  src=\"https://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		We look forward to working with you.<br>Our associates are standing by.		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		Copyright &copy; 2021 Eco Solutions LLC | Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a>','Eco Solutions Footer','','publish','closed','closed','','eco-solutions-footer','','','2021-02-17 16:06:56','2021-02-17 16:06:56','',0,'http://edssnow.com/?post_type=elementor-hf&#038;p=120',0,'elementor-hf','',0),(121,1,'2021-02-01 12:34:43','2021-02-01 12:34:43','','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:34:43','2021-02-01 12:34:43','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(122,1,'2021-02-01 12:35:43','2021-02-01 12:35:43','','Default Kit','','inherit','closed','closed','','10-revision-v1','','','2021-02-01 12:35:43','2021-02-01 12:35:43','',10,'http://edssnow.com/2021/02/01/10-revision-v1/',0,'revision','',0),(124,1,'2021-02-01 12:50:56','2021-02-01 12:50:56','','Eco Solution Logo_transparent','','inherit','open','closed','','eco-solution-logo_transparent','','','2021-02-01 12:50:56','2021-02-01 12:50:56','',0,'http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent.png',0,'attachment','image/png',0),(125,1,'2021-02-01 12:53:04','2021-02-01 12:53:04','','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:53:04','2021-02-01 12:53:04','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(126,1,'2021-02-01 12:53:04','2021-02-01 12:53:04','','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:53:04','2021-02-01 12:53:04','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(127,1,'2021-02-01 12:53:05','2021-02-01 12:53:05','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607 Little Rock, Ark 72223</p><p> </p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:53:05','2021-02-01 12:53:05','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(128,1,'2021-02-01 12:54:25','2021-02-01 12:54:25','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607 Little Rock, Ark 72223</p><p> </p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:54:25','2021-02-01 12:54:25','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(129,1,'2021-02-01 12:54:25','2021-02-01 12:54:25','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607 Little Rock, Ark 72223</p><p> </p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:54:25','2021-02-01 12:54:25','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(130,1,'2021-02-01 12:54:26','2021-02-01 12:54:26','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607 Little Rock, Ark 72223</p><p> </p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:54:26','2021-02-01 12:54:26','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(131,1,'2021-02-01 12:55:40','2021-02-01 12:55:40','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607 Little Rock, Ark 72223</p><p> </p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:55:40','2021-02-01 12:55:40','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(132,1,'2021-02-01 12:55:40','2021-02-01 12:55:40','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607 Little Rock, Ark 72223</p><p> </p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:55:40','2021-02-01 12:55:40','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(133,1,'2021-02-01 12:55:40','2021-02-01 12:55:40','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:55:40','2021-02-01 12:55:40','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(135,1,'2021-02-01 12:57:33','2021-02-01 12:57:33','http://edssnow.com/wp-content/uploads/2021/02/cropped-Eco-Solution-Logo_transparent.png','cropped-Eco-Solution-Logo_transparent.png','','inherit','open','closed','','cropped-eco-solution-logo_transparent-png','','','2021-02-01 12:57:33','2021-02-01 12:57:33','',0,'http://edssnow.com/wp-content/uploads/2021/02/cropped-Eco-Solution-Logo_transparent.png',0,'attachment','image/png',0),(137,1,'2021-02-01 12:58:42','2021-02-01 12:58:42','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:58:42','2021-02-01 12:58:42','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(138,1,'2021-02-01 12:58:42','2021-02-01 12:58:42','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:58:42','2021-02-01 12:58:42','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(139,1,'2021-02-01 12:58:42','2021-02-01 12:58:42','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607</p><p>Little Rock, Ark 72223</p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:58:42','2021-02-01 12:58:42','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(140,1,'2021-02-01 12:59:20','2021-02-01 12:59:20','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607</p><p>Little Rock, Ark 72223</p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:59:20','2021-02-01 12:59:20','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(141,1,'2021-02-01 12:59:21','2021-02-01 12:59:21','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607</p><p>Little Rock, Ark 72223</p>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:59:21','2021-02-01 12:59:21','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(142,1,'2021-02-01 12:59:22','2021-02-01 12:59:22','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:59:22','2021-02-01 12:59:22','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(143,1,'2021-02-01 12:59:53','2021-02-01 12:59:53','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:59:53','2021-02-01 12:59:53','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(144,1,'2021-02-01 12:59:53','2021-02-01 12:59:53','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:59:53','2021-02-01 12:59:53','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(145,1,'2021-02-01 12:59:54','2021-02-01 12:59:54','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-01 12:59:54','2021-02-01 12:59:54','',120,'http://edssnow.com/2021/02/01/120-revision-v1/',0,'revision','',0),(146,1,'2021-02-01 13:01:37','2021-02-01 13:01:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:01:37','2021-02-01 13:01:37','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(147,1,'2021-02-01 13:01:39','2021-02-01 13:01:39','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:01:39','2021-02-01 13:01:39','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(148,1,'2021-02-01 13:01:41','2021-02-01 13:01:41','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:01:41','2021-02-01 13:01:41','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(149,1,'2021-02-01 13:04:37','2021-02-01 13:04:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:04:37','2021-02-01 13:04:37','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(150,1,'2021-02-01 13:04:37','2021-02-01 13:04:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:04:37','2021-02-01 13:04:37','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(151,1,'2021-02-01 13:04:37','2021-02-01 13:04:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:04:37','2021-02-01 13:04:37','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(152,1,'2021-02-01 13:29:31','2021-02-01 13:29:31','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:29:31','2021-02-01 13:29:31','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(153,1,'2021-02-01 13:29:32','2021-02-01 13:29:32','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:29:32','2021-02-01 13:29:32','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(154,1,'2021-02-01 13:29:33','2021-02-01 13:29:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:29:33','2021-02-01 13:29:33','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(155,1,'2021-02-01 13:38:50','2021-02-01 13:38:50','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:38:50','2021-02-01 13:38:50','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(156,1,'2021-02-01 13:38:50','2021-02-01 13:38:50','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:38:50','2021-02-01 13:38:50','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(157,1,'2021-02-01 13:38:51','2021-02-01 13:38:51','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-01 13:38:51','2021-02-01 13:38:51','',15,'http://edssnow.com/2021/02/01/15-revision-v1/',0,'revision','',0),(159,1,'2021-02-01 14:12:48','2021-02-01 14:12:48','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Speciality Cleaning</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Dinfecting Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','publish','closed','closed','','contact-uss','','','2021-03-02 02:03:28','2021-03-02 02:03:28','',0,'http://edssnow.com/?page_id=159',0,'page','',0),(160,1,'2021-02-01 13:55:32','2021-02-01 13:55:32','','Elementor #159','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 13:55:32','2021-02-01 13:55:32','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(161,1,'2021-02-01 14:21:06','2021-02-01 14:21:06','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>','Elementor #159','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:21:06','2021-02-01 14:21:06','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(162,1,'2021-02-01 14:21:06','2021-02-01 14:21:06','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>','Contact Uss','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:21:06','2021-02-01 14:21:06','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(163,1,'2021-02-01 14:21:06','2021-02-01 14:21:06','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>','Contact Uss','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:21:06','2021-02-01 14:21:06','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(164,1,'2021-02-01 14:21:43','2021-02-01 14:21:43','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>','Contact Uss','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:21:43','2021-02-01 14:21:43','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(165,1,'2021-02-01 14:21:43','2021-02-01 14:21:43','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>','Contact Uss','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:21:43','2021-02-01 14:21:43','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(166,1,'2021-02-01 14:21:44','2021-02-01 14:21:44','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Uss','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:21:44','2021-02-01 14:21:44','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(168,1,'2021-02-01 14:22:38','2021-02-01 14:22:38','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Uss','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:22:38','2021-02-01 14:22:38','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(169,1,'2021-02-01 14:22:38','2021-02-01 14:22:38','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:22:38','2021-02-01 14:22:38','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(170,1,'2021-02-01 14:22:39','2021-02-01 14:22:39','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:22:39','2021-02-01 14:22:39','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(172,1,'2021-02-01 14:24:28','2021-02-01 14:24:28','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:24:28','2021-02-01 14:24:28','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(173,1,'2021-02-01 14:24:29','2021-02-01 14:24:29','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:24:29','2021-02-01 14:24:29','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(174,1,'2021-02-01 14:24:31','2021-02-01 14:24:31','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 14:24:31','2021-02-01 14:24:31','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(175,1,'2021-02-01 14:27:26','2021-02-01 14:27:26','','Home','','publish','closed','closed','','175','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'http://edssnow.com/2021/02/01/175/',1,'nav_menu_item','',0),(176,1,'2021-02-01 14:27:26','2021-02-01 14:27:26',' ','','','publish','closed','closed','','176','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'http://edssnow.com/2021/02/01/176/',3,'nav_menu_item','',0),(178,1,'2021-02-01 14:28:26','2021-02-01 14:28:26',' ','','','publish','closed','closed','','178','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'http://edssnow.com/2021/02/01/178/',2,'nav_menu_item','',0),(181,1,'2021-02-01 14:33:30','2021-02-01 14:33:30',' ','','','publish','closed','closed','','181','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'http://edssnow.com/2021/02/01/181/',8,'nav_menu_item','',0),(182,1,'2021-02-01 14:47:32','0000-00-00 00:00:00','<h4>This is an icon box</h4>\n                                                                        <p>Write a short description, that will describe the title or something informational and useful.</p>','COVID F.A.Q.','','draft','closed','closed','','','','','2021-02-01 14:47:32','2021-02-01 14:47:32','',0,'http://edssnow.com/?page_id=182',0,'page','',0),(185,1,'2021-02-01 17:34:33','2021-02-01 17:34:33','','EDSS Free Consultation Service','','publish','open','closed','','edss-disinfecting-service','','','2021-02-09 21:27:41','2021-02-09 21:27:41','',0,'http://edssnow.com/?post_type=product&#038;p=185',0,'product','',0),(186,1,'2021-02-09 19:32:39','2021-02-09 19:32:39','','EDSS Free Consultation Service','<p><br data-mce-bogus=\"1\"></p>','inherit','closed','closed','','185-autosave-v1','','','2021-02-09 19:32:39','2021-02-09 19:32:39','',185,'http://edssnow.com/2021/02/01/185-autosave-v1/',0,'revision','',0),(187,1,'2021-02-01 17:47:12','2021-02-01 17:47:12','[wbc-calendar]','Book Now','','publish','closed','closed','','book-now','','','2021-02-01 22:37:18','2021-02-01 22:37:18','',0,'http://edssnow.com/?page_id=187',0,'page','',0),(188,1,'2021-02-01 17:47:29','2021-02-01 17:47:29','<h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Book Now','','inherit','closed','closed','','187-revision-v1','','','2021-02-01 17:47:29','2021-02-01 17:47:29','',187,'http://edssnow.com/2021/02/01/187-revision-v1/',0,'revision','',0),(189,1,'2021-02-01 17:47:29','2021-02-01 17:47:29','<h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Book Now','','inherit','closed','closed','','187-revision-v1','','','2021-02-01 17:47:29','2021-02-01 17:47:29','',187,'http://edssnow.com/2021/02/01/187-revision-v1/',0,'revision','',0),(190,1,'2021-02-01 17:47:29','2021-02-01 17:47:29','<h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Book Now','','inherit','closed','closed','','187-revision-v1','','','2021-02-01 17:47:29','2021-02-01 17:47:29','',187,'http://edssnow.com/2021/02/01/187-revision-v1/',0,'revision','',0),(193,1,'2021-02-01 21:54:55','2021-02-01 21:54:55','The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.\n\nNOT ALL SPRAYERS ARE THE SAME!\n\nTank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.\n\nThe “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-01 21:54:55','2021-02-01 21:54:55','',82,'http://edssnow.com/2021/02/01/82-revision-v1/',0,'revision','',0),(195,1,'2021-02-01 21:56:14','2021-02-01 21:56:14','\n\n<!-- wp:paragraph -->\n<p><strong>How do TruElectrostatic work?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NOT ALL SPRAYERS ARE THE SAME!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>\n<!-- /wp:paragraph -->','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-01 21:56:14','2021-02-01 21:56:14','',82,'http://edssnow.com/2021/02/01/82-revision-v1/',0,'revision','',0),(198,1,'2021-02-01 22:20:00','2021-02-01 22:20:00','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 22:20:00','2021-02-01 22:20:00','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(199,1,'2021-02-01 22:20:00','2021-02-01 22:20:00','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Let\'s Chat! Look at the bottom right of your screen for our Live Chat button.</p>\n		<p>501-444-2757</p>		\n				<h3>\n					LIVE CHAT\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 22:20:00','2021-02-01 22:20:00','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(200,1,'2021-02-01 22:20:00','2021-02-01 22:20:00','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-01 22:20:00','2021-02-01 22:20:00','',159,'http://edssnow.com/2021/02/01/159-revision-v1/',0,'revision','',0),(201,1,'2021-02-01 22:37:18','2021-02-01 22:37:18','<h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Book Now','','inherit','closed','closed','','187-revision-v1','','','2021-02-01 22:37:18','2021-02-01 22:37:18','',187,'http://edssnow.com/2021/02/01/187-revision-v1/',0,'revision','',0),(202,1,'2021-02-01 22:37:18','2021-02-01 22:37:18','<h2></h2>\n                    <p></p>\n                    <a>Event Details</a>','Book Now','','inherit','closed','closed','','187-revision-v1','','','2021-02-01 22:37:18','2021-02-01 22:37:18','',187,'http://edssnow.com/2021/02/01/187-revision-v1/',0,'revision','',0),(203,1,'2021-02-01 22:37:18','2021-02-01 22:37:18','[wbc-calendar]','Book Now','','inherit','closed','closed','','187-revision-v1','','','2021-02-01 22:37:18','2021-02-01 22:37:18','',187,'http://edssnow.com/2021/02/01/187-revision-v1/',0,'revision','',0),(205,1,'2021-02-02 14:23:01','0000-00-00 00:00:00','','Elementor #205','','draft','closed','closed','','','','','2021-02-02 14:23:01','2021-02-02 14:23:01','',0,'http://edssnow.com/?page_id=205',0,'page','',0),(206,1,'2021-02-02 14:22:54','2021-02-02 14:22:54','','Elementor #205','','inherit','closed','closed','','205-revision-v1','','','2021-02-02 14:22:54','2021-02-02 14:22:54','',205,'http://edssnow.com/2021/02/02/205-revision-v1/',0,'revision','',0),(207,1,'2021-02-02 14:25:03','2021-02-02 14:25:03','','choose-us-2.jpg','','inherit','open','closed','','choose-us-2-jpg','','','2021-02-02 14:25:03','2021-02-02 14:25:03','',0,'http://edssnow.com/wp-content/uploads/2021/02/choose-us-2.jpg',0,'attachment','image/jpeg',0),(208,1,'2021-02-02 14:54:15','2021-02-02 14:54:15','<!-- wp:paragraph -->\n<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by <span style=\"color:#66c010\" class=\"has-inline-color\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.</span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><span style=\"color:#66c010\" class=\"has-inline-color\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating</span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the <span style=\"color:#66c010\" class=\"has-inline-color\">CDC</span> as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>\n<!-- /wp:paragraph -->','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:54:15','2021-02-02 14:54:15','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(209,1,'2021-02-02 14:54:16','2021-02-02 14:54:16','<!-- wp:paragraph -->\n<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by <span style=\"color:#66c010\" class=\"has-inline-color\">using environmentally safe and CDC-approved disinfecting agents and recommended methods.</span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><span style=\"color:#66c010\" class=\"has-inline-color\">In the unparalleled times of the deadly Coronavirus pandemic that is now mutating</span>, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the <span style=\"color:#66c010\" class=\"has-inline-color\">CDC</span> as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>\n<!-- /wp:paragraph -->','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:54:16','2021-02-02 14:54:16','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(210,1,'2021-02-02 14:54:19','2021-02-02 14:54:19','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:54:19','2021-02-02 14:54:19','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(211,1,'2021-02-02 14:54:43','2021-02-02 14:54:43','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:54:43','2021-02-02 14:54:43','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(212,1,'2021-02-02 14:54:44','2021-02-02 14:54:44','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:54:44','2021-02-02 14:54:44','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(213,1,'2021-02-02 14:54:44','2021-02-02 14:54:44','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:54:44','2021-02-02 14:54:44','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(214,1,'2021-02-02 14:55:34','2021-02-02 14:55:34','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:55:34','2021-02-02 14:55:34','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(215,1,'2021-02-02 14:55:35','2021-02-02 14:55:35','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:55:35','2021-02-02 14:55:35','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(216,1,'2021-02-02 14:55:35','2021-02-02 14:55:35','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:55:35','2021-02-02 14:55:35','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(217,1,'2021-02-02 14:56:49','2021-02-02 14:56:49','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:56:49','2021-02-02 14:56:49','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(218,1,'2021-02-02 14:56:50','2021-02-02 14:56:50','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:56:50','2021-02-02 14:56:50','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(219,1,'2021-02-02 14:56:50','2021-02-02 14:56:50','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:56:50','2021-02-02 14:56:50','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(220,1,'2021-02-02 14:57:31','2021-02-02 14:57:31','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:57:31','2021-02-02 14:57:31','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(221,1,'2021-02-02 14:57:31','2021-02-02 14:57:31','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:57:31','2021-02-02 14:57:31','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(222,1,'2021-02-02 14:57:32','2021-02-02 14:57:32','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:57:32','2021-02-02 14:57:32','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(223,1,'2021-02-02 14:58:30','2021-02-02 14:58:30','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:58:30','2021-02-02 14:58:30','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(224,1,'2021-02-02 14:58:30','2021-02-02 14:58:30','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:58:30','2021-02-02 14:58:30','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(225,1,'2021-02-02 14:58:32','2021-02-02 14:58:32','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 14:58:32','2021-02-02 14:58:32','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(226,1,'2021-02-02 15:02:17','2021-02-02 15:02:17','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:02:17','2021-02-02 15:02:17','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(227,1,'2021-02-02 15:02:18','2021-02-02 15:02:18','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:02:18','2021-02-02 15:02:18','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(228,1,'2021-02-02 15:02:19','2021-02-02 15:02:19','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:02:19','2021-02-02 15:02:19','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(230,1,'2021-02-02 15:05:00','2021-02-02 15:05:00','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:05:00','2021-02-02 15:05:00','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(231,1,'2021-02-02 15:05:02','2021-02-02 15:05:02','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:05:02','2021-02-02 15:05:02','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(232,1,'2021-02-02 15:05:05','2021-02-02 15:05:05','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:05:05','2021-02-02 15:05:05','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(233,1,'2021-02-02 15:05:39','2021-02-02 15:05:39','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:05:39','2021-02-02 15:05:39','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(234,1,'2021-02-02 15:05:40','2021-02-02 15:05:40','<h2>ABOUT EDSSNOW</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:05:40','2021-02-02 15:05:40','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(235,1,'2021-02-02 15:05:40','2021-02-02 15:05:40','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:05:40','2021-02-02 15:05:40','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(236,1,'2021-02-02 15:06:28','2021-02-02 15:06:28','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:06:28','2021-02-02 15:06:28','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(237,1,'2021-02-02 15:06:28','2021-02-02 15:06:28','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:06:28','2021-02-02 15:06:28','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(238,1,'2021-02-02 15:06:29','2021-02-02 15:06:29','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong style=\"font-style: inherit;\">ECO Solutions&nbsp;</strong>is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;using environmentally safe and CDC-approved disinfecting agents and recommended methods.<br></p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;CDC&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:06:29','2021-02-02 15:06:29','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(239,1,'2021-02-02 15:07:12','2021-02-02 15:07:12','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong style=\"font-style: inherit;\">ECO Solutions&nbsp;</strong>is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;using environmentally safe and CDC-approved disinfecting agents and recommended methods.<br></p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;CDC&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:07:12','2021-02-02 15:07:12','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(240,1,'2021-02-02 15:07:12','2021-02-02 15:07:12','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong style=\"font-style: inherit;\">ECO Solutions&nbsp;</strong>is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;using environmentally safe and CDC-approved disinfecting agents and recommended methods.<br></p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;CDC&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:07:12','2021-02-02 15:07:12','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(241,1,'2021-02-02 15:07:13','2021-02-02 15:07:13','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong style=\"font-style: inherit;\">ECO Solutions&nbsp;</strong>is committed to helping Businesses and Individuals provide clean and healthy environment by&nbsp;using environmentally safe and CDC-approved disinfecting agents and recommended methods.<br></p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the&nbsp;CDC&nbsp;as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-revision-v1','','','2021-02-02 15:07:13','2021-02-02 15:07:13','',43,'http://edssnow.com/2021/02/02/43-revision-v1/',0,'revision','',0),(242,1,'2021-02-02 15:09:05','2021-02-02 15:09:05','<h2>ABOUT ECO SOLUTIONS</h2>		\n		<p><strong>ECO Solutions </strong>is committed to helping Businesses and Individuals provide clean and healthy environment by using environmentally safe and CDC-approved disinfecting agents and recommended methods.</p>\n<p>In the unparalleled times of the deadly Coronavirus pandemic that is now mutating, we must enhance our cleaning methods. ECO Solutions specialize in TruElectrostatic Disinfecting and Sanitizing. The use of an Electrostatic Sprayer is recommended by the CDC as the most effective way to kill Viruses and Bacteria. We use the most advanced Electrostatic technology available in the World, the EMist TruElectrostatic Sprayer.</p>		\n		https://youtu.be/d7J_8Agv8fk		\n			<h2>We offer a comprehensive Disinfecting and Sanitizing solution to provide a front-line defense for infectious diseases and bacteria all customized to your needs.</h2>','About','','inherit','closed','closed','','43-autosave-v1','','','2021-02-02 15:09:06','2021-02-02 15:09:06','',43,'http://edssnow.com/2021/02/02/43-autosave-v1/',0,'revision','',0),(245,1,'2021-02-09 02:48:02','2021-02-09 02:48:02','','pexels-cdc-3992933','','inherit','open','closed','','pexels-cdc-3992933','','','2021-02-09 02:48:02','2021-02-09 02:48:02','',15,'http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933.jpg',0,'attachment','image/jpeg',0),(247,1,'2021-02-09 02:53:12','2021-02-09 02:53:12','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 02:53:12','2021-02-09 02:53:12','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(248,1,'2021-02-09 02:53:12','2021-02-09 02:53:12','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 02:53:12','2021-02-09 02:53:12','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(249,1,'2021-02-09 02:53:13','2021-02-09 02:53:13','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n		<p> Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 02:53:13','2021-02-09 02:53:13','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(251,1,'2021-02-09 03:00:55','2021-02-09 03:00:55','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n		<p> Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 03:00:55','2021-02-09 03:00:55','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(252,1,'2021-02-09 03:00:55','2021-02-09 03:00:55','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n		<p> Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 03:00:55','2021-02-09 03:00:55','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(253,1,'2021-02-09 03:00:55','2021-02-09 03:00:55','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 03:00:55','2021-02-09 03:00:55','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(254,1,'2021-02-09 03:02:23','2021-02-09 03:02:23','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 03:02:23','2021-02-09 03:02:23','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(255,1,'2021-02-09 03:02:23','2021-02-09 03:02:23','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 03:02:23','2021-02-09 03:02:23','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(256,1,'2021-02-09 03:02:24','2021-02-09 03:02:24','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 03:02:24','2021-02-09 03:02:24','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(257,1,'2021-02-09 03:11:12','2021-02-09 03:11:12','\n\n<!-- wp:paragraph -->\n<p><strong>How do TruElectrostatic work?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NOT ALL SPRAYERS ARE THE SAME!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>\n<!-- /wp:paragraph -->','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:11:12','2021-02-09 03:11:12','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(258,1,'2021-02-09 03:11:12','2021-02-09 03:11:12','\n\n<!-- wp:paragraph -->\n<p><strong>How do TruElectrostatic work?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NOT ALL SPRAYERS ARE THE SAME!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>\n<!-- /wp:paragraph -->','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:11:12','2021-02-09 03:11:12','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(259,1,'2021-02-09 03:11:12','2021-02-09 03:11:12','','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:11:12','2021-02-09 03:11:12','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(261,1,'2021-02-09 03:32:43','2021-02-09 03:32:43','','EMist_rollercart','','inherit','open','closed','','emist_rollercart','','','2021-02-09 03:32:43','2021-02-09 03:32:43','',82,'http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg',0,'attachment','image/jpeg',0),(262,1,'2021-02-09 03:41:24','2021-02-09 03:41:24','','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:41:24','2021-02-09 03:41:24','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(263,1,'2021-02-09 03:41:24','2021-02-09 03:41:24','','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:41:24','2021-02-09 03:41:24','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(264,1,'2021-02-09 03:41:25','2021-02-09 03:41:25','<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:41:25','2021-02-09 03:41:25','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(265,1,'2021-02-09 03:43:57','2021-02-09 03:43:57','<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:43:57','2021-02-09 03:43:57','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(266,1,'2021-02-09 03:43:57','2021-02-09 03:43:57','<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:43:57','2021-02-09 03:43:57','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(267,1,'2021-02-09 03:43:57','2021-02-09 03:43:57','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:43:57','2021-02-09 03:43:57','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(268,1,'2021-02-09 03:44:27','2021-02-09 03:44:27','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:44:27','2021-02-09 03:44:27','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(269,1,'2021-02-09 03:44:27','2021-02-09 03:44:27','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:44:27','2021-02-09 03:44:27','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(270,1,'2021-02-09 03:44:27','2021-02-09 03:44:27','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:44:27','2021-02-09 03:44:27','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(271,1,'2021-02-09 03:44:47','2021-02-09 03:44:47','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:44:47','2021-02-09 03:44:47','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(272,1,'2021-02-09 03:44:47','2021-02-09 03:44:47','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:44:47','2021-02-09 03:44:47','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(273,1,'2021-02-09 03:44:48','2021-02-09 03:44:48','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:44:48','2021-02-09 03:44:48','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(274,1,'2021-02-09 03:45:45','2021-02-09 03:45:45','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:45:45','2021-02-09 03:45:45','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(275,1,'2021-02-09 03:45:45','2021-02-09 03:45:45','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p> </p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p><p>NOT ALL SPRAYERS ARE THE SAME!</p><p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p><p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:45:45','2021-02-09 03:45:45','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(276,1,'2021-02-09 03:45:45','2021-02-09 03:45:45','<h2>HOW DOES TRUELECTROSTATIC WORK?</h2>		\n										<img width=\"611\" height=\"1024\" src=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-611x1024.jpg 611w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-179x300.jpg 179w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-768x1287.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart-600x1005.jpg 600w, http://edssnow.com/wp-content/uploads/2021/02/EMist_rollercart.jpg 850w\" sizes=\"(max-width: 611px) 100vw, 611px\" />											\n		<p></p>\n<p><br></p><p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectan as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>\n<p>NOT ALL SPRAYERS ARE THE SAME!</p>\n<p>Tank Sprayers are the least effective way of applying disinfectants, they only partially disinfect surfaces. When it comes to Electrostatic Sprayers not all are equal, most allow too much <strong>Drift</strong> and do not effectively charge the droplets as they are disbursed. The result is a partially disinfected area. Per the EPA <strong>Drift </strong>is important, it needs to be controlled and requires the minimum droplet disbursement sizes of 40-45 microns. Most Electrostatic machines disburse their droplets in that minimum range. Our EMIST TruElectrostatic machines disburse on the average of 75 microns with no <strong>Drift</strong> and provides a more comprehensive complete 360 3-D germ-killing coverage.</p>\n<p>The “Expansion Cloud Effect” explains how charged droplets are repelled by objects with a like charged. Coulomb’s Law states that like charges repel each other while unlike charge attracts each other. Most surfaces on Earth are negatively charged. As the droplets are dispensed, they race around to find their oppositely charged surfaces, this causes them to spread out and wrap around three-dimensional objects providing complete coverage including the smallest crevasses.</p>','TruElectrostatic','','inherit','closed','closed','','82-revision-v1','','','2021-02-09 03:45:45','2021-02-09 03:45:45','',82,'http://edssnow.com/2021/02/09/82-revision-v1/',0,'revision','',0),(277,1,'2021-02-09 04:04:16','2021-02-09 04:04:16','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','publish','closed','closed','','faq','','','2021-02-09 04:42:34','2021-02-09 04:42:34','',0,'http://edssnow.com/?page_id=277',0,'page','',0),(278,1,'2021-02-09 04:04:16','2021-02-09 04:04:16','','Elementor #277','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:04:16','2021-02-09 04:04:16','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(279,1,'2021-02-09 04:08:07','2021-02-09 04:08:07','','Elementor #277','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:08:07','2021-02-09 04:08:07','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(280,1,'2021-02-09 04:08:07','2021-02-09 04:08:07','','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:08:07','2021-02-09 04:08:07','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(281,1,'2021-02-09 04:08:07','2021-02-09 04:08:07','','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:08:07','2021-02-09 04:08:07','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(283,1,'2021-02-09 04:25:00','2021-02-09 04:25:00','','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:25:00','2021-02-09 04:25:00','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(284,1,'2021-02-09 04:25:00','2021-02-09 04:25:00','','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:25:00','2021-02-09 04:25:00','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(285,1,'2021-02-09 04:25:01','2021-02-09 04:25:01','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:25:01','2021-02-09 04:25:01','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(287,1,'2021-02-09 04:41:19','2021-02-09 04:41:19','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:41:19','2021-02-09 04:41:19','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(288,1,'2021-02-09 04:41:19','2021-02-09 04:41:19','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:41:19','2021-02-09 04:41:19','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(289,1,'2021-02-09 04:41:24','2021-02-09 04:41:24','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:41:24','2021-02-09 04:41:24','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(290,1,'2021-02-09 04:42:11','2021-02-09 04:42:11','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:42:11','2021-02-09 04:42:11','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(291,1,'2021-02-09 04:42:12','2021-02-09 04:42:12','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:42:12','2021-02-09 04:42:12','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(292,1,'2021-02-09 04:42:18','2021-02-09 04:42:18','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:42:18','2021-02-09 04:42:18','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(293,1,'2021-02-09 04:42:27','2021-02-09 04:42:27','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:42:27','2021-02-09 04:42:27','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(294,1,'2021-02-09 04:42:29','2021-02-09 04:42:29','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:42:29','2021-02-09 04:42:29','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(295,1,'2021-02-09 04:42:34','2021-02-09 04:42:34','<h2>Frequently asked questions</h2>		\n			<h2>How long can the coronavirus live on Surfaces?</h2>		\n                Plastic<p><p><strong>SARS COVID-2 can be detected anywhere from 3-7 days and may persist up to 28 days on non-porous surfaces.</strong></p></p>\n                Metal<p><p><strong>On Copper about 4 hours, Stainless Steel and other Metals can host the Virus between 3-7 days.</strong></p></p>\n                Paper<p><p><strong>On Money up to 4 days after exposure and up to 28 days in some cases, on printed paper and Tissue not found after 3 hours, Cardboard about 24 hours.</strong></p></p>\n                Glass<p><p><strong>On Windows, Television Screens, Computers Screens, Smartphones, and similar surfaces up to 4 days.</strong></p></p>\n                Cloth<p><p><strong>Cotton up to 2 weeks (most of which was inactivated upon first contact).</strong></p><p><a href=\"http://www.goodhousekeeping.com/health\"><strong>www.goodhousekeeping.com/health</strong></a></p></p>\n			<h2>Tips to mimize your risk</h2>		\n		<ol><li>Wash hands frequently at least 20 seconds, when unable to wash, use Hand Sanitizer.</li><li>Do not touch your face before washing. Avoid touching your Eyes, Nose, and Mouth.</li><li>Social Distance (stay at least 6 feet away from others)</li><li>Cover your Coughs and sneezes.</li><li>Open Windows or adjust your air systems for better ventilation when gathering inside.</li><li><strong>Disinfect high touch areas often.</strong></li><li>Use Video conferencing for Meetings if possible.</li><li><strong>Stay Home if you are sick. If a family member is sick, STAY HOME.</strong></li><li>Use non-contact methods to greet others.</li></ol><ul><li>Know how the Virus spread.</li><li>If in-person meeting is necessary increase the ventilation by opening windows or if possible, hold meeting outdoors, spread out seating and require Mask.</li></ul><p><strong>Protect others by wearing a Mask.</strong></p>		\n            <a href=\"https://giphy.com/gifs/idShevOa24HzYTgz06\"><img src=\"https://media.giphy.com/media/idShevOa24HzYTgz06/giphy.gif\" alt=\"\" width=\"420\" height=\"315\"></a>','FAQ','','inherit','closed','closed','','277-revision-v1','','','2021-02-09 04:42:34','2021-02-09 04:42:34','',277,'http://edssnow.com/2021/02/09/277-revision-v1/',0,'revision','',0),(296,1,'2021-02-09 04:47:06','2021-02-09 04:47:06',' ','','','publish','closed','closed','','296','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'http://edssnow.com/?p=296',5,'nav_menu_item','',0),(298,1,'2021-02-09 14:18:16','2021-02-09 14:18:16','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:18:16','2021-02-09 14:18:16','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(299,1,'2021-02-09 14:18:16','2021-02-09 14:18:16','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:18:16','2021-02-09 14:18:16','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(300,1,'2021-02-09 14:18:19','2021-02-09 14:18:19','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:18:19','2021-02-09 14:18:19','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(302,1,'2021-02-09 14:35:35','2021-02-09 14:35:35','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:35:35','2021-02-09 14:35:35','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(303,1,'2021-02-09 14:35:35','2021-02-09 14:35:35','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:35:35','2021-02-09 14:35:35','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(304,1,'2021-02-09 14:35:36','2021-02-09 14:35:36','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:35:36','2021-02-09 14:35:36','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(305,1,'2021-02-09 14:58:03','2021-02-09 14:58:03','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:58:03','2021-02-09 14:58:03','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(306,1,'2021-02-09 14:58:04','2021-02-09 14:58:04','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:58:04','2021-02-09 14:58:04','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(307,1,'2021-02-09 14:58:04','2021-02-09 14:58:04','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 14:58:04','2021-02-09 14:58:04','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(310,1,'2021-02-09 20:40:17','2021-02-09 20:40:17','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 20:40:17','2021-02-09 20:40:17','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(311,1,'2021-02-09 20:40:17','2021-02-09 20:40:17','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 20:40:17','2021-02-09 20:40:17','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(312,1,'2021-02-09 20:40:18','2021-02-09 20:40:18','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 20:40:18','2021-02-09 20:40:18','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(313,1,'2021-02-09 20:49:03','2021-02-09 20:49:03','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 20:49:03','2021-02-09 20:49:03','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(314,1,'2021-02-09 20:49:03','2021-02-09 20:49:03','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n            <a href=\"#\" data-text=\"Go!\">\n                    CLICK HERE TO SCHEDULE A DISINFECTING NOW\n            </a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n            </a>\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n            <a href=\"#\" data-text=\"Go!\">\n                    BOOK US RIGHT NOW\n            </a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 20:49:03','2021-02-09 20:49:03','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(315,1,'2021-02-09 20:49:03','2021-02-09 20:49:03','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 20:49:03','2021-02-09 20:49:03','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(316,1,'2021-02-09 21:37:34','2021-02-09 21:37:34','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:37:34','2021-02-09 21:37:34','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(317,1,'2021-02-09 21:37:35','2021-02-09 21:37:35','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:37:35','2021-02-09 21:37:35','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(318,1,'2021-02-09 21:37:36','2021-02-09 21:37:36','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:37:36','2021-02-09 21:37:36','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(319,1,'2021-02-09 21:37:52','2021-02-09 21:37:52','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:37:52','2021-02-09 21:37:52','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(320,1,'2021-02-09 21:37:52','2021-02-09 21:37:52','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:37:52','2021-02-09 21:37:52','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(321,1,'2021-02-09 21:37:53','2021-02-09 21:37:53','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:37:53','2021-02-09 21:37:53','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(322,1,'2021-02-09 21:40:05','2021-02-09 21:40:05','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:40:05','2021-02-09 21:40:05','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(323,1,'2021-02-09 21:40:05','2021-02-09 21:40:05','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:40:05','2021-02-09 21:40:05','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(324,1,'2021-02-09 21:40:05','2021-02-09 21:40:05','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-09 21:40:05','2021-02-09 21:40:05','',120,'http://edssnow.com/2021/02/09/120-revision-v1/',0,'revision','',0),(325,1,'2021-02-09 21:49:21','2021-02-09 21:49:21','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"https://edssnow.com\">\n					<img  src=\"https://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"https://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"https://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"https://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-418\"><a href=\"#\" class = \"hfe-menu-item\">COVID-19</a>\n<ul>\n	<li id=\"menu-item-296\"><a href=\"https://edssnow.com/faq/\" class = \"hfe-sub-menu-item\">FAQ</a></li>\n	<li id=\"menu-item-419\"><a href=\"https://edssnow.com/how-to-open-schools-safely/\" class = \"hfe-sub-menu-item\">How To Reopen Schools Safely</a></li>\n</ul>\n</li>\n<li id=\"menu-item-387\"><a href=\"https://edssnow.com/booking/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"https://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"https://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','publish','closed','closed','','edss-now-header','','','2021-02-20 16:58:47','2021-02-20 16:58:47','',0,'http://edssnow.com/?post_type=elementor-hf&#038;p=325',0,'elementor-hf','',0),(326,1,'2021-02-09 21:54:49','2021-02-09 21:54:49','','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-09 21:54:49','2021-02-09 21:54:49','',325,'http://edssnow.com/2021/02/09/325-revision-v1/',0,'revision','',0),(327,1,'2021-02-09 21:54:49','2021-02-09 21:54:49','','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-09 21:54:49','2021-02-09 21:54:49','',325,'http://edssnow.com/2021/02/09/325-revision-v1/',0,'revision','',0),(328,1,'2021-02-09 21:54:50','2021-02-09 21:54:50','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-09 21:54:50','2021-02-09 21:54:50','',325,'http://edssnow.com/2021/02/09/325-revision-v1/',0,'revision','',0),(330,1,'2021-02-09 22:13:20','2021-02-09 22:13:20','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 22:13:20','2021-02-09 22:13:20','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(331,1,'2021-02-09 22:13:20','2021-02-09 22:13:20','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 22:13:20','2021-02-09 22:13:20','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(332,1,'2021-02-09 22:13:21','2021-02-09 22:13:21','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Nationwide CCS to perform Quality Janitorial Services as well as Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 22:13:21','2021-02-09 22:13:21','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(333,1,'2021-02-09 22:14:35','2021-02-09 22:14:35','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Nationwide CCS to perform Quality Janitorial Services as well as Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 22:14:35','2021-02-09 22:14:35','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(334,1,'2021-02-09 22:14:36','2021-02-09 22:14:36','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Nationwide CCS to perform Quality Janitorial Services as well as Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 22:14:36','2021-02-09 22:14:36','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(335,1,'2021-02-09 22:14:37','2021-02-09 22:14:37','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-09 22:14:37','2021-02-09 22:14:37','',15,'http://edssnow.com/2021/02/09/15-revision-v1/',0,'revision','',0),(336,1,'2021-02-09 22:19:12','2021-02-09 22:19:12','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-09 22:19:12','2021-02-09 22:19:12','',325,'http://edssnow.com/2021/02/09/325-revision-v1/',0,'revision','',0),(337,1,'2021-02-09 22:19:12','2021-02-09 22:19:12','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-09 22:19:12','2021-02-09 22:19:12','',325,'http://edssnow.com/2021/02/09/325-revision-v1/',0,'revision','',0),(338,1,'2021-02-09 22:19:12','2021-02-09 22:19:12','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-09 22:19:12','2021-02-09 22:19:12','',325,'http://edssnow.com/2021/02/09/325-revision-v1/',0,'revision','',0),(339,1,'2021-02-10 15:35:28','2021-02-10 15:35:28','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:35:28','2021-02-10 15:35:28','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(340,1,'2021-02-10 15:35:30','2021-02-10 15:35:30','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:35:30','2021-02-10 15:35:30','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(341,1,'2021-02-10 15:35:31','2021-02-10 15:35:31','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:35:31','2021-02-10 15:35:31','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(342,1,'2021-02-10 15:36:29','2021-02-10 15:36:29','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:36:29','2021-02-10 15:36:29','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(343,1,'2021-02-10 15:36:30','2021-02-10 15:36:30','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:36:30','2021-02-10 15:36:30','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(344,1,'2021-02-10 15:36:31','2021-02-10 15:36:31','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:36:31','2021-02-10 15:36:31','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(345,1,'2021-02-10 15:37:38','2021-02-10 15:37:38','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:37:38','2021-02-10 15:37:38','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(346,1,'2021-02-10 15:37:39','2021-02-10 15:37:39','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:37:39','2021-02-10 15:37:39','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(347,1,'2021-02-10 15:37:44','2021-02-10 15:37:44','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:37:44','2021-02-10 15:37:44','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(348,1,'2021-02-10 15:39:05','2021-02-10 15:39:05','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:39:05','2021-02-10 15:39:05','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(349,1,'2021-02-10 15:39:07','2021-02-10 15:39:07','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:39:07','2021-02-10 15:39:07','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(350,1,'2021-02-10 15:39:08','2021-02-10 15:39:08','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-10 15:39:08','2021-02-10 15:39:08','',325,'http://edssnow.com/2021/02/10/325-revision-v1/',0,'revision','',0),(351,1,'2021-02-10 15:43:50','2021-02-10 15:43:50','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 15:43:50','2021-02-10 15:43:50','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(352,1,'2021-02-10 15:43:51','2021-02-10 15:43:51','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 15:43:51','2021-02-10 15:43:51','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(353,1,'2021-02-10 15:43:52','2021-02-10 15:43:52','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 15:43:52','2021-02-10 15:43:52','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(354,1,'2021-02-10 16:49:27','2021-02-10 16:49:27','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-10 16:49:27','2021-02-10 16:49:27','',120,'http://edssnow.com/2021/02/10/120-revision-v1/',0,'revision','',0),(355,1,'2021-02-10 16:49:27','2021-02-10 16:49:27','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		<p>PO Box 241607<br>\nLittle Rock, Ark 72223</>		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-10 16:49:27','2021-02-10 16:49:27','',120,'http://edssnow.com/2021/02/10/120-revision-v1/',0,'revision','',0),(356,1,'2021-02-10 16:49:28','2021-02-10 16:49:28','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		We look forward to working with you.<br>Our associates are standing by.		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-10 16:49:28','2021-02-10 16:49:28','',120,'http://edssnow.com/2021/02/10/120-revision-v1/',0,'revision','',0),(357,1,'2021-02-10 16:50:02','2021-02-10 16:50:02','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:02','2021-02-10 16:50:02','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(358,1,'2021-02-10 16:50:02','2021-02-10 16:50:02','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING, NIGHTLY JANITORIAL SERVICES				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:02','2021-02-10 16:50:02','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(359,1,'2021-02-10 16:50:03','2021-02-10 16:50:03','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:03','2021-02-10 16:50:03','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(360,1,'2021-02-10 16:50:33','2021-02-10 16:50:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:33','2021-02-10 16:50:33','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(361,1,'2021-02-10 16:50:33','2021-02-10 16:50:33','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates - Nationwide - Across The Country!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:33','2021-02-10 16:50:33','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(362,1,'2021-02-10 16:50:34','2021-02-10 16:50:34','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:34','2021-02-10 16:50:34','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(363,1,'2021-02-10 16:50:56','2021-02-10 16:50:56','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:56','2021-02-10 16:50:56','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(364,1,'2021-02-10 16:50:57','2021-02-10 16:50:57','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:57','2021-02-10 16:50:57','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(365,1,'2021-02-10 16:50:57','2021-02-10 16:50:57','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:50:57','2021-02-10 16:50:57','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(366,1,'2021-02-10 16:51:23','2021-02-10 16:51:23','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:51:23','2021-02-10 16:51:23','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(367,1,'2021-02-10 16:51:23','2021-02-10 16:51:23','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:51:23','2021-02-10 16:51:23','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(368,1,'2021-02-10 16:51:24','2021-02-10 16:51:24','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-10 16:51:24','2021-02-10 16:51:24','',15,'http://edssnow.com/2021/02/10/15-revision-v1/',0,'revision','',0),(369,1,'2021-02-10 17:04:27','2021-02-10 17:04:27','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-10 17:04:27','2021-02-10 17:04:27','',159,'http://edssnow.com/2021/02/10/159-revision-v1/',0,'revision','',0),(370,1,'2021-02-10 17:04:28','2021-02-10 17:04:28','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Nightly Janitorial Services</p><p>Speciality Cleaning</p><p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-10 17:04:28','2021-02-10 17:04:28','',159,'http://edssnow.com/2021/02/10/159-revision-v1/',0,'revision','',0),(371,1,'2021-02-10 17:04:29','2021-02-10 17:04:29','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p>\n<p>Speciality Cleaning<br></p>\n<p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-02-10 17:04:29','2021-02-10 17:04:29','',159,'http://edssnow.com/2021/02/10/159-revision-v1/',0,'revision','',0),(372,1,'2021-02-11 05:14:43','0000-00-00 00:00:00','','Order &ndash; February 11, 2021 @ 05:14 AM','','draft','closed','closed','','','','','2021-02-11 05:14:43','2021-02-11 05:14:43','',0,'http://edssnow.com/?post_type=shop_order&#038;p=372',0,'shop_order','',0),(376,1,'2021-02-15 00:59:28','2021-02-15 00:59:28','<h2>Book An Appointment</h2>		\n		<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','publish','closed','closed','','booking','','','2021-02-15 01:34:45','2021-02-15 01:34:45','',0,'http://edssnow.com/?page_id=376',0,'page','',0),(377,1,'2021-02-15 00:58:46','2021-02-15 00:58:46','<!-- wp:bookly/form -->\n<div class=\"wp-block-bookly-form\">[bookly-form]</div>\n<!-- /wp:bookly/form -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 00:58:46','2021-02-15 00:58:46','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(379,1,'2021-02-15 01:27:49','2021-02-15 01:27:49','<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 01:27:49','2021-02-15 01:27:49','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(381,1,'2021-02-15 01:34:20','2021-02-15 01:34:20','<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 01:34:20','2021-02-15 01:34:20','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(382,1,'2021-02-15 01:34:20','2021-02-15 01:34:20','<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 01:34:20','2021-02-15 01:34:20','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(383,1,'2021-02-15 01:34:20','2021-02-15 01:34:20','<h2>Book An Appointment</h2>		\n		<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 01:34:20','2021-02-15 01:34:20','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(384,1,'2021-02-15 01:34:44','2021-02-15 01:34:44','<h2>Book An Appointment</h2>		\n		<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 01:34:44','2021-02-15 01:34:44','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(385,1,'2021-02-15 01:34:45','2021-02-15 01:34:45','<h2>Book An Appointment</h2>		\n		<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 01:34:45','2021-02-15 01:34:45','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(386,1,'2021-02-15 01:34:45','2021-02-15 01:34:45','<h2>Book An Appointment</h2>		\n		<!-- wp:shortcode -->\n[CP_APP_HOUR_BOOKING id=\"2\"]\n<!-- /wp:shortcode -->','Booking','','inherit','closed','closed','','376-revision-v1','','','2021-02-15 01:34:45','2021-02-15 01:34:45','',376,'http://edssnow.com/2021/02/15/376-revision-v1/',0,'revision','',0),(387,1,'2021-02-15 01:37:27','2021-02-15 01:37:27','','Book Now','','publish','closed','closed','','book-now','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'http://edssnow.com/?p=387',7,'nav_menu_item','',0),(389,1,'2021-02-16 22:53:37','2021-02-16 22:53:37','','Order &ndash; February 16, 2021 @ 10:53 PM','','wc-completed','closed','closed','','order-february-16-2021-1055-pm','','','2021-02-16 22:56:11','2021-02-16 22:56:11','',0,'https://edssnow.com/?post_type=shop_order&#038;p=389',0,'shop_order','',4),(390,1,'2021-02-16 23:28:41','2021-02-16 23:28:41','','Order &ndash; February 16, 2021 @ 11:32 PM','','wc-pending','closed','closed','','','','','2021-02-16 23:32:20','2021-02-16 23:32:20','',0,'https://edssnow.com/?post_type=shop_order&#038;p=390',0,'shop_order','',3),(391,1,'2021-02-16 23:33:56','2021-02-16 23:33:56','','Order &ndash; February 16, 2021 @ 11:35 PM','','wc-pending','closed','closed','','','','','2021-02-16 23:35:07','2021-02-16 23:35:07','',0,'https://edssnow.com/?post_type=shop_order&#038;p=391',0,'shop_order','',2),(392,1,'2021-02-16 23:49:56','2021-02-16 23:49:56','','Order &ndash; February 16, 2021 @ 11:49 PM','','wc-pending','closed','closed','','order-february-16-2021-1151-pm','','','2021-02-16 23:52:14','2021-02-16 23:52:14','',0,'https://edssnow.com/?post_type=shop_order&#038;p=392',0,'shop_order','',2),(393,1,'2021-02-16 23:56:34','2021-02-16 23:56:34','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-16 23:56:34','2021-02-16 23:56:34','',15,'https://edssnow.com/2021/02/16/15-revision-v1/',0,'revision','',0),(394,1,'2021-02-16 23:56:35','2021-02-16 23:56:35','NATIONWIDE \n				<noscript>\n					COMMERCIAL CLEANING, COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, http://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-16 23:56:35','2021-02-16 23:56:35','',15,'https://edssnow.com/2021/02/16/15-revision-v1/',0,'revision','',0),(395,1,'2021-02-16 23:56:35','2021-02-16 23:56:35','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-16 23:56:35','2021-02-16 23:56:35','',15,'https://edssnow.com/2021/02/16/15-revision-v1/',0,'revision','',0),(396,1,'2021-02-17 16:05:35','2021-02-17 16:05:35','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-17 16:05:35','2021-02-17 16:05:35','',15,'https://edssnow.com/2021/02/17/15-revision-v1/',0,'revision','',0),(397,1,'2021-02-17 16:05:39','2021-02-17 16:05:39','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"http://edssnow.com/book-now/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-17 16:05:39','2021-02-17 16:05:39','',15,'https://edssnow.com/2021/02/17/15-revision-v1/',0,'revision','',0),(398,1,'2021-02-17 16:05:42','2021-02-17 16:05:42','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-02-17 16:05:42','2021-02-17 16:05:42','',15,'https://edssnow.com/2021/02/17/15-revision-v1/',0,'revision','',0),(399,1,'2021-02-17 16:06:55','2021-02-17 16:06:55','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		We look forward to working with you.<br>Our associates are standing by.		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-17 16:06:55','2021-02-17 16:06:55','',120,'https://edssnow.com/2021/02/17/120-revision-v1/',0,'revision','',0),(400,1,'2021-02-17 16:06:56','2021-02-17 16:06:56','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		We look forward to working with you.<br>Our associates are standing by.		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		<p>Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a></p>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-17 16:06:56','2021-02-17 16:06:56','',120,'https://edssnow.com/2021/02/17/120-revision-v1/',0,'revision','',0),(401,1,'2021-02-17 16:06:56','2021-02-17 16:06:56','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"https://edssnow.com\">\n					<img  src=\"https://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-768x440.png\" alt=\"Eco Solution Logo_transparent\"/>\n							</a>\n			<h2>Contact Us</h2>		\n		We look forward to working with you.<br>Our associates are standing by.		\n					<ul>\n							<li>\n										501-444-2757\n									</li>\n								<li>\n										info@edssnow.com\n									</li>\n								<li>\n										Open 7 Days A Week\n									</li>\n						</ul>\n		Copyright &copy; 2021 Eco Solutions LLC | Website built by <a href=\"https://esselwebdesign.com\" target=\"_blank\" rel=\"noopener\">Essel Web Design</a>','Eco Solutions Footer','','inherit','closed','closed','','120-revision-v1','','','2021-02-17 16:06:56','2021-02-17 16:06:56','',120,'https://edssnow.com/2021/02/17/120-revision-v1/',0,'revision','',0),(402,1,'2021-02-18 05:41:27','0000-00-00 00:00:00','','How to Reopen Schools Safely','','draft','closed','closed','','','','','2021-02-18 05:41:27','2021-02-18 05:41:27','',0,'https://edssnow.com/?page_id=402',0,'page','',0),(403,1,'2021-02-17 16:12:19','2021-02-17 16:12:19','','Elementor #402','','inherit','closed','closed','','402-revision-v1','','','2021-02-17 16:12:19','2021-02-17 16:12:19','',402,'https://edssnow.com/2021/02/17/402-revision-v1/',0,'revision','',0),(404,1,'2021-02-20 16:46:16','2021-02-20 16:46:16','<h2>How To Safely Reopen Your School</h2>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"</p>\n<p>Unlike conventional spraying methods using spray bottles and wipes,&nbsp;<strong style=\"font-style: inherit;\">Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage.<br></p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','How To Open Schools Safely','','publish','closed','closed','','how-to-open-schools-safely','','','2021-03-02 02:03:15','2021-03-02 02:03:15','',0,'https://edssnow.com/?page_id=404',0,'page','',0),(405,1,'2021-02-20 16:07:32','2021-02-20 16:07:32','','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:07:32','2021-02-20 16:07:32','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(406,1,'2021-02-20 16:18:16','2021-02-20 16:18:16','','eco-solutions-how to open schools','','inherit','open','closed','','eco-solutions-how-to-open-schools','','','2021-02-20 16:18:16','2021-02-20 16:18:16','',0,'https://edssnow.com/wp-content/uploads/2021/02/eco-solutions-how-to-open-schools.jpg',0,'attachment','image/jpeg',0),(407,1,'2021-02-20 16:22:29','2021-02-20 16:22:29','','eco-solutions-how to open schools','','inherit','open','closed','','eco-solutions-how-to-open-schools-2','','','2021-02-20 16:22:29','2021-02-20 16:22:29','',0,'https://edssnow.com/wp-content/uploads/2021/02/eco-solutions-how-to-open-schools-1.jpg',0,'attachment','image/jpeg',0),(408,1,'2021-02-20 16:42:31','2021-02-20 16:42:31','','tru-electrostatic-eco-solutions','','inherit','open','closed','','tru-electrostatic-eco-solutions','','','2021-02-20 16:42:31','2021-02-20 16:42:31','',404,'https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png',0,'attachment','image/png',0),(409,1,'2021-02-20 16:49:34','2021-02-20 16:49:34','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"#\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:49:34','2021-02-20 16:49:34','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(410,1,'2021-02-20 16:49:34','2021-02-20 16:49:34','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"#\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:49:34','2021-02-20 16:49:34','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(411,1,'2021-02-20 16:49:35','2021-02-20 16:49:35','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" role=\"button\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:49:35','2021-02-20 16:49:35','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(412,1,'2021-02-20 16:51:12','2021-02-20 16:51:12','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" role=\"button\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:51:12','2021-02-20 16:51:12','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(413,1,'2021-02-20 16:51:12','2021-02-20 16:51:12','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" role=\"button\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:51:12','2021-02-20 16:51:12','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(414,1,'2021-02-20 16:51:12','2021-02-20 16:51:12','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" role=\"button\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:51:12','2021-02-20 16:51:12','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(415,1,'2021-02-20 16:52:42','2021-02-20 16:52:42','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" role=\"button\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:52:42','2021-02-20 16:52:42','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(416,1,'2021-02-20 16:52:42','2021-02-20 16:52:42','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" role=\"button\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:52:42','2021-02-20 16:52:42','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(417,1,'2021-02-20 16:52:43','2021-02-20 16:52:43','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-02-20 16:52:43','2021-02-20 16:52:43','',404,'https://edssnow.com/2021/02/20/404-revision-v1/',0,'revision','',0),(418,1,'2021-02-20 16:54:17','2021-02-20 16:54:17','','COVID-19','','publish','closed','closed','','covid-19','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'https://edssnow.com/?p=418',4,'nav_menu_item','',0),(419,1,'2021-02-20 16:54:17','2021-02-20 16:54:17','','How To Reopen Schools Safely','','publish','closed','closed','','how-to-reopen-schools-safely','','','2021-02-20 16:54:17','2021-02-20 16:54:17','',0,'https://edssnow.com/?p=419',6,'nav_menu_item','',0),(420,1,'2021-02-20 16:58:47','2021-02-20 16:58:47','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-20 16:58:47','2021-02-20 16:58:47','',325,'https://edssnow.com/2021/02/20/325-revision-v1/',0,'revision','',0),(421,1,'2021-02-20 16:58:47','2021-02-20 16:58:47','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"http://edssnow.com\">\n					<img  src=\"http://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"http://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"http://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"http://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-296\"><a href=\"http://edssnow.com/faq/\" class = \"hfe-menu-item\">FAQ</a></li>\n<li id=\"menu-item-204\"><a href=\"http://edssnow.com/book-now/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"http://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"http://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-20 16:58:47','2021-02-20 16:58:47','',325,'https://edssnow.com/2021/02/20/325-revision-v1/',0,'revision','',0),(422,1,'2021-02-20 16:58:47','2021-02-20 16:58:47','<a data-elementor-open-lightbox=\"\"  class=\'elementor-clickable\' href=\"https://edssnow.com\">\n					<img  src=\"https://edssnow.com/wp-content/uploads/2021/02/Eco-Solution-Logo_transparent-300x172.png\" alt=\"\"/>\n							</a>\n				<nav data-toggle-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;fas fa-align-justify&quot;&gt;&lt;/i&gt;\" data-close-icon=\"&lt;i aria-hidden=&quot;true&quot; tabindex=&quot;0&quot; class=&quot;far fa-window-close&quot;&gt;&lt;/i&gt;\" data-full-width=\"yes\"><ul id=\"menu-1-02142cf\"><li id=\"menu-item-175\"><a href=\"https://edssnow.com/\" class = \"hfe-menu-item\">Home</a></li>\n<li id=\"menu-item-178\"><a href=\"https://edssnow.com/about/\" class = \"hfe-menu-item\">About</a></li>\n<li id=\"menu-item-176\"><a href=\"https://edssnow.com/truelectrostatic/\" class = \"hfe-menu-item\">TruElectrostatic</a></li>\n<li id=\"menu-item-418\"><a href=\"#\" class = \"hfe-menu-item\">COVID-19</a>\n<ul>\n	<li id=\"menu-item-296\"><a href=\"https://edssnow.com/faq/\" class = \"hfe-sub-menu-item\">FAQ</a></li>\n	<li id=\"menu-item-419\"><a href=\"https://edssnow.com/how-to-open-schools-safely/\" class = \"hfe-sub-menu-item\">How To Reopen Schools Safely</a></li>\n</ul>\n</li>\n<li id=\"menu-item-387\"><a href=\"https://edssnow.com/booking/\" class = \"hfe-menu-item\">Book Now</a></li>\n<li id=\"menu-item-181\"><a href=\"https://edssnow.com/contact-uss/\" class = \"hfe-menu-item\">Contact Us</a></li>\n</ul></nav>              \n					<form role=\"search\" action=\"https://edssnow.com\" method=\"get\">\n				<input placeholder=\"\" type=\"search\" name=\"s\" title=\"Search\" value=\"\">\n					</form>','EDSS Now Header','','inherit','closed','closed','','325-revision-v1','','','2021-02-20 16:58:47','2021-02-20 16:58:47','',325,'https://edssnow.com/2021/02/20/325-revision-v1/',0,'revision','',0),(423,1,'2021-03-02 02:00:19','2021-03-02 02:00:19','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-03-02 02:00:19','2021-03-02 02:00:19','',404,'https://edssnow.com/2021/03/02/404-revision-v1/',0,'revision','',0),(424,1,'2021-03-02 02:00:20','2021-03-02 02:00:20','<h2>How To Safely Reopen Your School</h2>		\n		<p><em>\"With the EMist system, we can disinfect a room in about two minutes and the entire campus within two hours.\"</em><br />– Andrea Vela, SAISD Custodial Supervisor</p>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<a href=\"https://edssnow.com/truelectrostatic/\" role=\"button\">\n						Learn More About TruElectrostatic\n					</a>\n			<h2>Discover how you can safely reopen your school today.</h2>		\n			<a href=\"https://emist.com/industries/education/?mc_cid=61f2582d8a&#038;mc_eid=3377ffd323\" target=\"_blank\" role=\"button\" rel=\"noopener\">\n						Learn More\n					</a>','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-03-02 02:00:20','2021-03-02 02:00:20','',404,'https://edssnow.com/2021/03/02/404-revision-v1/',0,'revision','',0),(425,1,'2021-03-02 02:00:20','2021-03-02 02:00:20','<h2>How To Safely Reopen Your School</h2>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-03-02 02:00:20','2021-03-02 02:00:20','',404,'https://edssnow.com/2021/03/02/404-revision-v1/',0,'revision','',0),(426,1,'2021-03-02 02:01:27','2021-03-02 02:01:27','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p>\n<p>Speciality Cleaning<br></p>\n<p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-03-02 02:01:27','2021-03-02 02:01:27','',159,'https://edssnow.com/2021/03/02/159-revision-v1/',0,'revision','',0),(427,1,'2021-03-02 02:01:27','2021-03-02 02:01:27','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p>\n<p>Speciality Cleaning<br></p>\n<p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Cleaning Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-03-02 02:01:27','2021-03-02 02:01:27','',159,'https://edssnow.com/2021/03/02/159-revision-v1/',0,'revision','',0),(428,1,'2021-03-02 02:01:28','2021-03-02 02:01:28','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p>\n<p>Speciality Cleaning<br></p>\n<p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Dinfecting Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-03-02 02:01:28','2021-03-02 02:01:28','',159,'https://edssnow.com/2021/03/02/159-revision-v1/',0,'revision','',0),(429,1,'2021-03-02 02:03:14','2021-03-02 02:03:14','<h2>How To Safely Reopen Your School</h2>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-03-02 02:03:14','2021-03-02 02:03:14','',404,'https://edssnow.com/2021/03/02/404-revision-v1/',0,'revision','',0),(430,1,'2021-03-02 02:03:14','2021-03-02 02:03:14','<h2>How To Safely Reopen Your School</h2>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"<br /><br />Schools around the country use EMist <strong>Tru</strong>Electrostatic™ Disinfectant Sprayers to disinfect large areas on a more frequent basis.<br /><br />Unlike conventional spraying methods using spray bottles and wipes, <strong>Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage, reduced labor costs, and less chemical waste.</p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-03-02 02:03:14','2021-03-02 02:03:14','',404,'https://edssnow.com/2021/03/02/404-revision-v1/',0,'revision','',0),(431,1,'2021-03-02 02:03:15','2021-03-02 02:03:15','<h2>How To Safely Reopen Your School</h2>		\n			<h2>President Joe Biden is pledging to reopen most K-12 schools within 100 days.</h2>		\n		<p>According to the EPA, \"Electrostatic spraying has drawn increased interest through the public health emergency because of the need to disinfect large indoor spaces (e.g., schools, offices, businesses) or areas with many surfaces.\"</p>\n<p>Unlike conventional spraying methods using spray bottles and wipes,&nbsp;<strong style=\"font-style: inherit;\">Tru</strong>Electrostatic sprayers apply a positive charge to liquid disinfectants as they pass through the nozzle. The positively charged disinfectant is attracted to negatively charged surfaces, which allows for better coverage.<br></p>		\n										<img width=\"1024\" height=\"478\" src=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-1024x478.png 1024w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-300x140.png 300w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-768x358.png 768w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions-600x280.png 600w, https://edssnow.com/wp-content/uploads/2021/02/tru-electrostatic-eco-solutions.png 1200w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','How To Open Schools Safely','','inherit','closed','closed','','404-revision-v1','','','2021-03-02 02:03:15','2021-03-02 02:03:15','',404,'https://edssnow.com/2021/03/02/404-revision-v1/',0,'revision','',0),(432,1,'2021-03-02 02:03:27','2021-03-02 02:03:27','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p>\n<p>Speciality Cleaning<br></p>\n<p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Dinfecting Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-03-02 02:03:27','2021-03-02 02:03:27','',159,'https://edssnow.com/2021/03/02/159-revision-v1/',0,'revision','',0),(433,1,'2021-03-02 02:03:28','2021-03-02 02:03:28','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p>\n<p>Speciality Cleaning<br></p>\n<p>Day Porter Services</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Dinfecting Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-03-02 02:03:28','2021-03-02 02:03:28','',159,'https://edssnow.com/2021/03/02/159-revision-v1/',0,'revision','',0),(434,1,'2021-03-02 02:03:28','2021-03-02 02:03:28','<h2>contact us<br>\n501-444-2757</h2>		\n		<p>Emergency COVID-19 Disinfecting</p><p>Speciality Cleaning</p>		\n			<h2>fill out the form below</h2>		\n				<h3>\n					CALL/TEXT US\n				</h3>\n								<p>24 Houra A Day - 7 Days A Week! Let us know what\'s going on and we\'ll be there!</p>\n		<p>501-444-2757</p>		\n				<h3>\n					EMAIL US\n				</h3>\n								<p>Email us if your questions and or concerns! We\'re great at responding quickly!</p>\n		<p>info@edssnow.com</p>		\n                                                    <h3>\n                                Commercial Dinfecting Service Inquiry                             </h3>\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->','Contact Us','','inherit','closed','closed','','159-revision-v1','','','2021-03-02 02:03:28','2021-03-02 02:03:28','',159,'https://edssnow.com/2021/03/02/159-revision-v1/',0,'revision','',0),(436,1,'2021-03-02 02:14:48','2021-03-02 02:14:48','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-03-02 02:14:48','2021-03-02 02:14:48','',15,'https://edssnow.com/2021/03/02/15-revision-v1/',0,'revision','',0),(437,1,'2021-03-02 02:14:48','2021-03-02 02:14:48','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-03-02 02:14:48','2021-03-02 02:14:48','',15,'https://edssnow.com/2021/03/02/15-revision-v1/',0,'revision','',0),(438,1,'2021-03-02 02:14:49','2021-03-02 02:14:49','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h2>GET BACK TO WORK</h2>		\n		<p>As America reopens, we will get your offices and facilities disinfected</p>		\n			<h2>CDC PROCEDURES</h2>		\n		<p>We GUARANTEE CDC Procedures are followed on every project we complete</p>		\n			<h2>CLEANED WITH LOVE</h2>		\n		<p>Our cleaning/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-03-02 02:14:49','2021-03-02 02:14:49','',15,'https://edssnow.com/2021/03/02/15-revision-v1/',0,'revision','',0),(439,1,'2021-03-02 02:19:03','2021-03-02 02:19:03','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h2>GET BACK TO WORK</h2>		\n		<p>As America reopens, we will get your offices and facilities disinfected</p>		\n			<h2>CDC PROCEDURES</h2>		\n		<p>We GUARANTEE CDC Procedures are followed on every project we complete</p>		\n			<h2>CLEANED WITH LOVE</h2>		\n		<p>Our cleaning/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-03-02 02:19:03','2021-03-02 02:19:03','',15,'https://edssnow.com/2021/03/02/15-revision-v1/',0,'revision','',0),(440,1,'2021-03-02 02:19:04','2021-03-02 02:19:04','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>Disinfecting your Office, Public facility, Retail location, Productions Facilities and Homes weekly will help to stop the spread of the Coronavirus.</h2>		\n			<h2>GET BACK TO WORK</h2>		\n		<p>As America reopens, we will get your offices and facilities disinfected</p>		\n			<h2>CDC PROCEDURES</h2>		\n		<p>We GUARANTEE CDC Procedures are followed on every project we complete</p>		\n			<h2>CLEANED WITH LOVE</h2>		\n		<p>Our cleaning/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-03-02 02:19:04','2021-03-02 02:19:04','',15,'https://edssnow.com/2021/03/02/15-revision-v1/',0,'revision','',0),(441,1,'2021-03-02 02:19:04','2021-03-02 02:19:04','ECO SOLUTIONS \n				<noscript>\n					COVID-19 DISINFECTING				</noscript>\n			<!-- close .eael-fancy-text-container -->\n		<p>Trust the professionals here at Eco Solutions to perform Coronavirus Disinfecting Services at Affordable Rates!</p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>CALL OR TEXT US TODAY - 24/7 - 501-444-2757</h2>		\n			<h2>-ECO SOLUTIONS-<br>COMMERCIAL AND RESIDENTIAL<br>Coronavirus Disinfecting and Sanitizing Solutions<br>501-444-2757</h2>		\n			<h2>Certified Services Include:</h2>		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n		TruElectrostatic Technology		\n		<p>Disinfecting</p>		\n		<p>Sanitizing</p>		\n		<p>Steam Sterilization</p>		\n		<p>Trained Certified Professionals</p>		\n		<p>One time or recurring Disinfecting service. Customized to fit your needs and budget.</p>		\n		<p>Safe Zone set-ups for small Meeting and gatherings</p>		\n		<p>Insured</p>		\n		Free Consultation		\n		Health-E Certification		\n		90-Day BIOPROTECT RTU protective coating		\n		Non-Corrosive, Non-Irritating, Non-Caustic Disinfectants		\n		Day Porter available		\n		Flexible scheduling		\n		Assortment of PPE and Sanitizing supplies for recurring Partners		\n		100% Satisfaction Guaranteed		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						CLICK HERE TO SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>We Specialize in Coronavirus Disinfecting and Sanitizing for properties such as:</h2>		\n						<ul data-list-animation=\"slideInLeft animated-\">\n			<li data-delay=\"0\">\n				 Commercial Office Buildings \n			</li>\n			<li data-delay=\"0\">\n				 Retail Stores \n			</li>\n			<li data-delay=\"0\">\n				 Doctor\'s Offices \n			</li>\n			<li data-delay=\"0\">\n				 Restaurants/Bars \n			</li>\n			<li data-delay=\"0\">\n				 Hotels \n			</li>\n			<li data-delay=\"0\">\n				 Schools/Daycare Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Municipalities \n			</li>\n			<li data-delay=\"0\">\n				 Banks/ATM \n			</li>\n			<li data-delay=\"0\">\n				 Rehabilitation/Nursing Facilities \n			</li>\n			<li data-delay=\"0\">\n				 Gyms/Health Clubs \n			</li>\n			<li data-delay=\"0\">\n				 Homes \n			</li>\n			<li data-delay=\"0\">\n				 Auto/Fleet \n			</li>\n			<li data-delay=\"0\">\n				 Transportation \n			</li>\n			<li data-delay=\"0\">\n				 Salon/Barber Shops \n			</li>\n			<li data-delay=\"0\">\n				 And More... \n			</li>\n						</ul>\n										<img width=\"1024\" height=\"576\" src=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1024x576.jpg 1024w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-300x169.jpg 300w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-768x432.jpg 768w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-1536x864.jpg 1536w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-2048x1152.jpg 2048w, https://edssnow.com/wp-content/uploads/2021/02/pexels-cdc-3992933-600x338.jpg 600w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h2>pricing</h2>		\n		<p>Our Prices are fair, and we guarantee our work! Pricing varies depending on square footage, number of Offices/rooms, Workstations, Equipment, type of Facilities and other special items. Our Disinfecting methods are Environmentally safe and our trained Professionals only use Disinfectants registered on the EPA list N, and approved by the FDA,WHO and we always follow CDC Disinfecting procedures.</p>		\n			<h2>One time or Recurring Disinfecting, Sanitizing and PPE all customized to fit your needs. We use TruElectrostatic Technology recommended as best method to kill Viruses in conjunction with following CDC, FDA, EPA and WHO guidelines.</h2>		\n			<h2>recurring cleaning schedule</h2>		\n			<h2>*weekly</h2>		\n			<h2>*bi-weekly</h2>		\n			<h2>*monthly</h2>		\n			<h2>One time or Recurring Disinfecting Services across the country. This includes our UV Light Disinfecting in Conjuction with our CDC Disinfecting Program</h2>		\n			<h2>GET BACK TO WORK</h2>		\n		<p>As America reopens, we will get your offices and facilities disinfected</p>		\n			<h2>CDC PROCEDURES</h2>		\n		<p>We GUARANTEE CDC Procedures are followed on every project we complete</p>		\n			<h2>CLEANED WITH LOVE</h2>		\n		<p>Our cleaning/disinfecting teams are detailed,&nbsp; experienced, and will treat you right&nbsp;</p>		\n			<h4>THERE IS A DIFFERENCE BETWEEN DISINFECTING AND SANITIZING</h4>		\n			<h3>DISINFECTING<br>VS<br>SANITIZING</h3>		\n			<h2>disinfecting</h2>		\n		<p><strong>Disinfecting </strong>is for hard (non-porous) surfaces such as for example:</p><ul><li>Counter Tops</li><li>Tile</li><li>Hardwood</li><li>Metal</li><li>Glass and other</li></ul>		\n			<h2>sanitizing</h2>		\n		<p><strong>Sanitizing</strong> is for (porous) surfaces such as for example:</p>\n<ul>\n<li>Cloth Upholstery</li>\n<li>Carpet</li>\n<li>Rugs</li>\n<li>Drapes and other</li>\n</ul><p><em>Traditional cleaning methods cannot replace a Professional Disinfecting service because of the requirement to use industrial strength products and specialized equipment and Technology application and follow CDC, EPA, WTO, and FDA guideline.</em></p>		\n			<h2>All your Disinfecting, Sanitizing and PPE Supplies at a single source.</h2>		\n			<h2>The White House is being disinfected by using the EMIST TruElectrostatic Sprayers</h2>		\n		<p>The TruElectrostatic Sprayer work by charging the Liquid Disinfectant as it passes through the nozzle and Positively charging the droplets before disbursement, which then finds an opposite Negatively charged surface. Most surfaces in our environment are Negatively charged or Neutral. The TruElectrostatic process allows for complete 3-D coverage of non-porous surfaces. Per the <strong>EPA</strong>: Electrostatic spray methods are the most effective way to kill the Coronavirus that causes Covid-19, SARS, MERS and other Viruses and Bacteria.</p>		\n			<a href=\"http://edssnow.com/truelectrostatic/\" role=\"button\">\n						FIND OUT MORE ABOUT TRUELECTROSTATIC SPRAYERS\n					</a>\n			<h2>EPA/ FDA / WTO REGISTERED DISINFECTANTS</h2>		\n		<ul style=\"font-size: 15px; font-style: normal; font-weight: 400;\"><li style=\"font-size: 15px;\">WALTZ-D meets the EPA’s criteria for use against the Coronavirus that causes COVID-19, SARS-COVID-2, MERS. Staphylococcus Aureus, Norovirus, H1N1, Salmonella Enterica, Escherichia and more. Food safe and kills 99.9% of Viruses.</li><li style=\"font-size: 15px;\">BIOPROTECT RTU 90-Day Antimicrobial coating. Meets EPA and FDA’s criteria for Food surface safety. BIOPROTECT RTU is a water-based Antimicrobial that inhibits the growth of Microbes and Microorganisms on surfaces for up to 90 days. Kills 99.9 % of Viruses.</li><li style=\"font-size: 15px;\">All our Disinfectant and Sanitizing solutions are Food safe, medical grade solutions approved by the FDA, EPA list N, WTO and follows CDC guidelines.</li><li style=\"font-size: 15px;\">High pressure Steam</li></ul><p>ECO Solutions uses Environmentally safe Disinfecting agents listed on the EPA list N. We offer a customized solution to fit your needs and budget. Whether it is a simple one-time deep-cleaning Disinfecting or a recurring Disinfecting plan. For our recurring plans, we can fulfil all your <strong>PPE Equipment </strong>needs such as <strong>Gloves, Mask, Shields, Gowns, Lab Coats, Overalls, 8-hour Hand Sanitizer, and Hair Caps, as an example and more.</strong></p>		\n			<a href=\"https://edssnow.com/booking/\" role=\"button\">\n						SCHEDULE A FREE CONSULTATION\n					</a>\n			<h2>For immediate response<br>\nContact us using the form below</h2>		\n                                <noscript>\n    Notice: JavaScript is required for this content.</noscript>\n        <!-- TODO: Move to Template File. -->\n			<h2>We look forward to working with YOU!</h2>','Home Page','','inherit','closed','closed','','15-revision-v1','','','2021-03-02 02:19:04','2021-03-02 02:19:04','',15,'https://edssnow.com/2021/03/02/15-revision-v1/',0,'revision','',0),(443,0,'2021-03-12 20:18:19','2021-03-12 20:18:19','','','','publish','closed','closed','','443','','','2021-03-12 20:18:19','2021-03-12 20:18:19','',0,'https://edssnow.com/nf_sub/443/',0,'nf_sub','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (175,16,0),(176,16,0),(178,16,0),(181,16,0),(185,17,0),(185,18,0),(296,16,0),(387,16,0),(418,16,0),(419,16,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(16,16,'nav_menu','',0,8),(17,17,'product_cat','',0,1),(18,18,'product_type','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,17,'order','0'),(2,17,'product_count_product_cat','1');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Primary Menu','primary-menu',0),(17,'Cleaning Services','cleaning-services',0),(18,'booking','booking',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','eessel'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(17,1,'wp_dashboard_quick_press_last_post_id','445'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"69.222.196.0\";}'),(19,1,'_woocommerce_tracks_anon_id','woo:3rvsme4OrAtz42gmVtH+zmle'),(20,1,'wc_last_active','1617235200'),(21,1,'_order_count','0'),(22,1,'bsf-optin-notice','notice-dismissed'),(23,1,'elementor_introduction','a:1:{s:10:\"rightClick\";b:1;}'),(24,1,'wp_user-settings','editor=tinymce&libraryContent=browse'),(25,1,'wp_user-settings-time','1613839976'),(26,1,'header-footer-elementor-rating','notice-dismissed'),(34,1,'nav_menu_recently_edited','16'),(35,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(36,1,'metaboxhidden_nav-menus','a:6:{i:0;s:21:\"add-post-type-product\";i:1;s:26:\"add-post-type-tribe_events\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";}'),(37,1,'tribe_setDefaultNavMenuBoxes','1'),(38,1,'wp_elementor_connect_common_data','a:6:{s:9:\"client_id\";s:32:\"RZOBU3ysfs9R00yZb9wbdX3F3x9LAJaB\";s:11:\"auth_secret\";s:32:\"KgtXrv1EX4faXDjAhZ0B4jIQR2te1M58\";s:12:\"access_token\";s:32:\"diYWPXjkJ1Zvd06l2TgW0X9vcqfVx2Nv\";s:19:\"access_token_secret\";s:32:\"SOv9wR9mR2iPWerp324lzEKqswQ7nIfB\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:23:\"ekow@esselwebdesign.com\";}}'),(40,1,'session_tokens','a:1:{s:64:\"a5266b35fdb16c8618e4c3539aa025d92a2c80eb1a80b327f4e73fba7acd5af4\";a:4:{s:10:\"expiration\";i:1618112426;s:2:\"ip\";s:13:\"69.222.196.79\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1616902826;}}'),(42,1,'tribe-dismiss-notice','wp_version_57'),(44,1,'_last_order',NULL),(47,1,'bookly_dismiss_collect_stats_notice','1'),(48,1,'bookly_services_table_settings','a:2:{s:5:\"order\";a:0:{}s:6:\"filter\";a:1:{s:8:\"category\";s:0:\"\";}}'),(51,2,'nickname','shelton.cole'),(52,2,'first_name','Shelton'),(53,2,'last_name','Cole'),(54,2,'description',''),(55,2,'rich_editing','true'),(56,2,'syntax_highlighting','true'),(57,2,'comment_shortcuts','false'),(58,2,'admin_color','fresh'),(59,2,'use_ssl','0'),(60,2,'show_admin_bar_front','true'),(61,2,'locale',''),(62,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(63,2,'wp_user_level','10'),(64,2,'dismissed_wp_pointers',''),(65,2,'last_update','1613517867'),(66,1,'dismissed_woocommerce_bookings_activation_notice','1'),(67,1,'closedpostboxes_shop_order','a:0:{}'),(68,1,'metaboxhidden_shop_order','a:0:{}'),(69,1,'tribe-dismiss-notice','events-utc-timezone-2021-02-28'),(70,1,'embedpress_review','1'),(71,1,'wpdeveloper_notices_seen','a:1:{s:24:\"wpdeveloper_notice_2_6_2\";a:1:{s:10:\"embedpress\";a:1:{i:0;s:6:\"review\";}}}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'eessel','$P$BmzQ1VlyKFigE1QuDMztMkjiX30IBi/','eessel','ekow@esselwebdesign.com','http://edssnow.com','2021-01-24 22:00:33','',0,'eessel'),(2,'shelton.cole','$P$BPw5AB1MpPhygjBRdeTZCVCI4nqc2O.','shelton-cole','sheltoncole1@comcast.net','https://edssnow.com','2021-02-16 23:24:26','1613517867:$P$Bp7SW68JBC9ctomHsdrT34Y.h/XHs50',0,'Shelton Cole');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  `actioned_text` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1250 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_note_actions`
--

LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (2,2,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,''),(3,3,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,''),(4,4,'open-marketing-hub','Open marketing hub','http://edssnow.com/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(21,13,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,''),(58,15,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,''),(77,16,'tracking-opt-in','Activate usage tracking','','actioned',1,''),(132,17,'share-feedback','Share feedback','https://automattic.survey.fm/new-onboarding-survey','actioned',0,''),(133,18,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback'),(134,18,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback'),(171,19,'home-screen-feedback-share-feedback','Share feedback','https://automattic.survey.fm/home-screen-survey','actioned',0,''),(307,20,'learn-more','Learn more','https://woocommerce.com/payments/','unactioned',0,''),(308,20,'get-started','Get started','http://edssnow.com/wp-admin/admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(351,25,'set-up-payments','Set up payments','http://edssnow.com/wp-admin/admin.php?page=wc-admin&task=payments','unactioned',1,''),(365,26,'wc-payments-notes-set-up-refund-policy','Read more','https://docs.woocommerce.com/document/woocommerce-refunds#refund-policy-howto','unactioned',1,''),(366,27,'wc-payments-notes-set-https-for-checkout','Read more','https://docs.woocommerce.com/document/ssl-and-https/#section-7','unactioned',1,''),(380,28,'learn-more','Learn more','https://docs.woocommerce.com/document/managing-orders/?utm_source=inbox','actioned',0,''),(618,8,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(619,9,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(620,10,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(621,11,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(772,31,'install-mollie','Install Mollie','https://wordpress.org/plugins/mollie-payments-for-woocommerce/','actioned',1,''),(1234,35,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(1235,23,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,''),(1236,24,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(1237,5,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(1238,6,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(1239,7,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(1240,14,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(1241,12,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,''),(1242,21,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),(1243,22,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,''),(1244,34,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,''),(1245,34,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),(1246,32,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),(1247,33,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,''),(1248,29,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,''),(1249,30,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'');
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_admin_notes`
--

DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_520_ci,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
  `layout` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `image` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_admin_notes`
--

LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (2,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-01-24 23:46:17',NULL,0,'plain','',0,'info'),(3,'wc-admin-onboarding-email-marketing','info','en_US','Tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-01-24 23:47:18',NULL,0,'plain','',0,'info'),(4,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2021-01-24 23:47:18',NULL,0,'plain','',0,'info'),(5,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(6,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping &amp; Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(7,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(8,'wcpay-promo-2020-11','marketing','en_US','Manage subscriber payments from your store\'s dashboard','Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>  – now supporting <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Subscriptions</a>! <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(9,'wcpay-subscriptions-2020-11','marketing','en_US','Manage subscriber payments from your store\'s dashboard','Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>  – now supporting <a href=\"https://woocommerce.com/products/woocommerce-subscriptions/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Subscriptions</a>! <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(10,'wcpay-promo-2020-12','marketing','en_US','Get 50% off transaction fees with WooCommerce Payments','Keep more of your hard-earned cash by adding <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp20\" target=\"_blank\">WooCommerce Payments</a> to your store. Lock in a discounted rate of 1.5% + $0.15 for $25,000 of payments (or three months, whichever comes first). Limited time offer – don’t miss out! <br /><br /><em>By clicking \"Install now,\" you agree to our promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-promotion/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(11,'wcpay-subscriptions-2020-12','marketing','en_US','Manage payments from your store\'s dashboard','Securely accept cards and manage transactions right from your dashboard with <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">WooCommerce Payments</a>! Zero setup fees or monthly fees. Just pay-as-you-go, starting at just 2.9% + $0.30 per transaction for U.S.-issued cards. <br /><br /><em>By clicking \"Install now,\" you agree to our <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_ctrl20\" target=\"_blank\">Terms of Service</a>.</em>','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(12,'your-first-product','info','en_US','Your first product','That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2021-01-24 23:47:19',NULL,0,'plain','',0,'info'),(13,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','{}','unactioned','woocommerce-admin','2021-01-27 03:16:38',NULL,0,'plain','',0,'info'),(14,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-01-27 03:16:39',NULL,0,'plain','',0,'info'),(15,'wc-admin-onboarding-payments-reminder','info','en_US','Start accepting payments on your store!','Take payments with the provider that’s right for you - choose from 100+ payment gateways for WooCommerce.','{}','unactioned','woocommerce-admin','2021-01-30 19:23:00',NULL,0,'plain','',0,'info'),(16,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"http://edssnow.com/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','{}','unactioned','woocommerce-admin','2021-02-01 01:14:30',NULL,0,'plain','',0,'info'),(17,'wc-admin-store-notice-giving-feedback-2','info','en_US','Give feedback','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','{}','unactioned','woocommerce-admin','2021-02-02 00:35:06',NULL,0,'plain','',0,'info'),(18,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-02-02 00:35:06',NULL,0,'plain','',0,'info'),(19,'wc-admin-home-screen-feedback','info','en_US','Help us improve the WooCommerce Home screen','We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.','{}','unactioned','woocommerce-admin','2021-02-06 03:00:49',NULL,0,'plain','',0,'info'),(20,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with <strong>WooCommerce Payments</strong>.<br><br>By clicking \"Get started\", you agree to our <a href=\"https://wordpress.com/tos/\" target=\"_blank\">Terms of Service</a>','{}','actioned','woocommerce-admin','2021-02-09 23:47:23',NULL,0,'plain','',0,'info'),(21,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-02-12 01:36:09',NULL,0,'plain','',0,'info'),(22,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-02-12 01:36:09',NULL,0,'plain','',0,'info'),(23,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.','{}','pending','woocommerce.com','2021-02-13 01:28:35',NULL,0,'plain','',0,'info'),(24,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-02-13 01:28:35',NULL,0,'plain','',0,'info'),(25,'wc-admin-set-up-additional-payment-types','info','en_US','Set up additional payment providers','Set up additional payment providers, using third-party services or other methods.','{}','unactioned','woocommerce-admin','2021-02-13 02:06:44',NULL,0,'plain','',0,'info'),(26,'wc-payments-notes-set-up-refund-policy','info','en_US','Set up refund policy','Protect your merchant account from fraudulent disputes by defining the policy and making it accessible to customers.','{}','unactioned','woocommerce-payments','2021-02-13 02:06:49',NULL,0,'plain','',0,'info'),(27,'wc-payments-notes-set-https-for-checkout','info','en_US','Force secure checkout','Protect your customers data and increase trustworthiness of your store by forcing HTTPS on checkout pages.','{}','unactioned','woocommerce-payments','2021-02-13 02:06:49',NULL,0,'plain','',0,'info'),(28,'wc-admin-orders-milestone','info','en_US','First order received','Congratulations on getting your first order! Now is a great time to learn how to manage your orders.','{}','unactioned','woocommerce-admin','2021-02-13 03:54:50',NULL,0,'plain','',0,'info'),(29,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-02-16 23:46:47',NULL,0,'plain','',0,'info'),(30,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2021-02-16 23:46:47',NULL,0,'plain','',0,'info'),(31,'wc-admin-effortless-payments-by-mollie','info','en_US','Effortless payments by Mollie','Offer global and local payment methods, get onboarded in minutes and supported in your language – try it now!','{}','pending','woocommerce.com','2021-02-20 01:46:23',NULL,0,'plain','',0,'info'),(32,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-03-21 01:55:02',NULL,0,'plain','',0,'info'),(33,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-03-21 01:55:02',NULL,0,'plain','',0,'info'),(34,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','unactioned','woocommerce.com','2021-04-01 01:22:07',NULL,0,'plain','',0,'info'),(35,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','{}','pending','woocommerce.com','2021-04-02 00:02:37',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_booking_relationships`
--

DROP TABLE IF EXISTS `wp_wc_booking_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_booking_relationships` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `product_id` bigint(20) unsigned NOT NULL,
  `resource_id` bigint(20) unsigned NOT NULL,
  `sort_order` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `product_id` (`product_id`),
  KEY `resource_id` (`resource_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_booking_relationships`
--

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

--
-- Table structure for table `wp_wc_bookings_availability`
--

DROP TABLE IF EXISTS `wp_wc_bookings_availability`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_bookings_availability` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gcal_event_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `range_type` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `from_date` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `to_date` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `from_range` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `to_range` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `bookable` varchar(5) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  `priority` int(2) NOT NULL DEFAULT '10',
  `ordering` int(2) NOT NULL DEFAULT '0',
  `date_created` datetime DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  `rrule` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`ID`),
  KEY `gcal_event_id` (`gcal_event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_bookings_availability`
--

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

--
-- Table structure for table `wp_wc_bookings_availabilitymeta`
--

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

--
-- Dumping data for table `wp_wc_bookings_availabilitymeta`
--

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

--
-- Table structure for table `wp_wc_category_lookup`
--

DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_category_lookup`
--

LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_category_lookup` VALUES (15,15);
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_customer_lookup`
--

LOCK TABLES `wp_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_customer_lookup` VALUES (1,NULL,'','Ekow','Essel','ekow@esselwebdesign.com','2021-02-11 11:27:40',NULL,'US','','','');
/*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_download_log`
--

DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`),
  CONSTRAINT `fk_wp_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wp_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_download_log`
--

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

--
-- Table structure for table `wp_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wp_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT '0',
  `product_gross_revenue` double NOT NULL DEFAULT '0',
  `coupon_amount` double NOT NULL DEFAULT '0',
  `tax_amount` double NOT NULL DEFAULT '0',
  `shipping_amount` double NOT NULL DEFAULT '0',
  `shipping_tax_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_product_lookup`
--

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

--
-- Table structure for table `wp_wc_order_stats`
--

DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT '0',
  `total_sales` double NOT NULL DEFAULT '0',
  `tax_total` double NOT NULL DEFAULT '0',
  `shipping_total` double NOT NULL DEFAULT '0',
  `net_total` double NOT NULL DEFAULT '0',
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_stats`
--

LOCK TABLES `wp_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */;
INSERT INTO `wp_wc_order_stats` VALUES (389,0,'2021-02-16 22:53:37','2021-02-16 22:53:37',0,1,0,0,1,0,'wc-completed',1),(390,0,'2021-02-16 23:28:41','2021-02-16 23:28:41',0,1,0,0,1,1,'wc-pending',1),(391,0,'2021-02-16 23:33:56','2021-02-16 23:33:56',0,1,0,0,1,1,'wc-pending',1),(392,0,'2021-02-16 23:49:56','2021-02-16 23:49:56',0,1,0,0,1,1,'wc-pending',1);
/*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT '0',
  `order_tax` double NOT NULL DEFAULT '0',
  `total_tax` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wp_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT '0',
  `downloadable` tinyint(1) DEFAULT '0',
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT '0',
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT '0',
  `average_rating` decimal(3,2) DEFAULT '0.00',
  `total_sales` bigint(20) DEFAULT '0',
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_product_meta_lookup`
--

LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (185,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable','');
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT '0',
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_reserved_stock`
--

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

--
-- Table structure for table `wp_wc_tax_rate_classes`
--

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

--
-- Dumping data for table `wp_wc_tax_rate_classes`
--

LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wc_webhooks`
--

DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wc_webhooks`
--

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

--
-- Table structure for table `wp_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_520_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_api_keys`
--

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

--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wp_woocommerce_log`
--

DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_log`
--

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

--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--

LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_order_itemmeta` VALUES (1,1,'_fee_amount','1600'),(2,1,'_tax_class',''),(3,1,'_tax_status','taxable'),(4,1,'_line_total','1600'),(5,1,'_line_tax','0'),(6,1,'_line_tax_data','a:1:{s:5:\"total\";a:0:{}}'),(25,5,'_fee_amount','1'),(26,5,'_tax_class',''),(27,5,'_tax_status','taxable'),(28,5,'_line_total','1'),(29,5,'_line_tax','0'),(30,5,'_line_tax_data','a:1:{s:5:\"total\";a:0:{}}'),(31,6,'_fee_amount','1'),(32,6,'_tax_class',''),(33,6,'_tax_status','taxable'),(34,6,'_line_total','1'),(35,6,'_line_tax','0'),(36,6,'_line_tax_data','a:1:{s:5:\"total\";a:0:{}}'),(37,7,'_fee_amount','1'),(38,7,'_tax_class',''),(39,7,'_tax_status','taxable'),(40,7,'_line_total','1'),(41,7,'_line_tax','0'),(42,7,'_line_tax_data','a:1:{s:5:\"total\";a:0:{}}'),(43,8,'_fee_amount','1'),(44,8,'_tax_class',''),(45,8,'_tax_status','taxable'),(46,8,'_line_total','1'),(47,8,'_line_tax','0'),(48,8,'_line_tax_data','a:1:{s:5:\"total\";a:0:{}}');
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_order_items`
--

LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_order_items` VALUES (1,'&#36;1,600.00 fee','fee',372),(5,'$1.00 fee','fee',389),(6,'$1.00 fee','fee',390),(7,'$1.00 fee','fee',391),(8,'$1.00 fee','fee',392);
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wp_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wp_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_sessions`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wp_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wp_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wp_wpdevart_calendars`
--

DROP TABLE IF EXISTS `wp_wpdevart_calendars`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpdevart_calendars` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `title` varchar(128) NOT NULL,
  `hours_enabled` varchar(3) NOT NULL,
  `hours_interval_enabled` varchar(3) NOT NULL,
  `theme_id` int(11) NOT NULL,
  `form_id` int(11) NOT NULL,
  `extra_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpdevart_calendars`
--

LOCK TABLES `wp_wpdevart_calendars` WRITE;
/*!40000 ALTER TABLE `wp_wpdevart_calendars` DISABLE KEYS */;
INSERT INTO `wp_wpdevart_calendars` VALUES (1,1,'Eco Solutions Free Consultation','','',1,1,0);
/*!40000 ALTER TABLE `wp_wpdevart_calendars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpdevart_dates`
--

DROP TABLE IF EXISTS `wp_wpdevart_dates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpdevart_dates` (
  `unique_id` varchar(32) NOT NULL,
  `calendar_id` int(11) NOT NULL,
  `day` varchar(16) NOT NULL,
  `data` text NOT NULL,
  PRIMARY KEY (`unique_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpdevart_dates`
--

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

--
-- Table structure for table `wp_wpdevart_extras`
--

DROP TABLE IF EXISTS `wp_wpdevart_extras`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpdevart_extras` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(128) NOT NULL,
  `data` text NOT NULL,
  `user_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpdevart_extras`
--

LOCK TABLES `wp_wpdevart_extras` WRITE;
/*!40000 ALTER TABLE `wp_wpdevart_extras` DISABLE KEYS */;
INSERT INTO `wp_wpdevart_extras` VALUES (1,'Extra','{\"extra_field1\":{\"name\":\"extra_field1\",\"label\":\"Adults\",\"required\":\"on\",\"items\":{\"field_item1\":{\"name\":\"field_item1\",\"label\":\"1\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"},\"field_item2\":{\"name\":\"field_item2\",\"label\":\"2\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"},\"field_item3\":{\"name\":\"field_item3\",\"label\":\"3\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"},\"field_item4\":{\"name\":\"field_item4\",\"label\":\"4\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"}}},\"extra_field2\":{\"name\":\"extra_field2\",\"label\":\"Children \",\"items\":{\"field_item1\":{\"name\":\"field_item1\",\"label\":\"1\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"},\"field_item2\":{\"name\":\"field_item2\",\"label\":\"2\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"},\"field_item3\":{\"name\":\"field_item3\",\"label\":\"3\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"},\"field_item4\":{\"name\":\"field_item4\",\"label\":\"4\",\"operation\":\"+\",\"price_type\":\"price\",\"price_percent\":\"0\"}}}}',1);
/*!40000 ALTER TABLE `wp_wpdevart_extras` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpdevart_forms`
--

DROP TABLE IF EXISTS `wp_wpdevart_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpdevart_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(128) NOT NULL,
  `data` text NOT NULL,
  `user_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpdevart_forms`
--

LOCK TABLES `wp_wpdevart_forms` WRITE;
/*!40000 ALTER TABLE `wp_wpdevart_forms` DISABLE KEYS */;
INSERT INTO `wp_wpdevart_forms` VALUES (1,'Reservation Consultation Form','{\"save\":\"Save\",\"form_field1\":{\"type\":\"text\",\"name\":\"form_field1\",\"label\":\"First Name\",\"required\":\"on\",\"isname\":\"on\"},\"form_field2\":{\"type\":\"text\",\"name\":\"form_field2\",\"label\":\"Last Name\",\"isname\":\"on\"},\"form_field3\":{\"type\":\"text\",\"name\":\"form_field3\",\"label\":\"Email\",\"required\":\"on\",\"isemail\":\"on\"},\"form_field4\":{\"type\":\"text\",\"name\":\"form_field4\",\"label\":\"Phone\",\"required\":\"on\"},\"form_field5\":{\"type\":\"textarea\",\"name\":\"form_field5\",\"label\":\"Message\",\"required\":\"on\"}}',1);
/*!40000 ALTER TABLE `wp_wpdevart_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wpdevart_payments`
--

DROP TABLE IF EXISTS `wp_wpdevart_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpdevart_payments` (
  `pay_id` int(11) NOT NULL AUTO_INCREMENT,
  `res_id` int(11) NOT NULL,
  `payment_price` float NOT NULL,
  `tax` float NOT NULL,
  `pay_status` varchar(20) NOT NULL,
  `ip` varchar(32) NOT NULL,
  `ipn` varchar(32) NOT NULL,
  `payment_address` varchar(350) NOT NULL,
  `payment_info` text NOT NULL,
  `modified_date` varchar(20) NOT NULL,
  PRIMARY KEY (`pay_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpdevart_payments`
--

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

--
-- Table structure for table `wp_wpdevart_reservations`
--

DROP TABLE IF EXISTS `wp_wpdevart_reservations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpdevart_reservations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `calendar_id` int(11) NOT NULL,
  `single_day` varchar(16) NOT NULL,
  `check_in` varchar(16) NOT NULL,
  `check_out` varchar(16) NOT NULL,
  `start_hour` varchar(16) NOT NULL,
  `end_hour` varchar(16) NOT NULL,
  `currency` varchar(32) NOT NULL,
  `count_item` int(10) NOT NULL,
  `price` float NOT NULL,
  `total_price` float NOT NULL,
  `extras` text NOT NULL,
  `extras_price` float NOT NULL,
  `form` text NOT NULL,
  `address_billing` text NOT NULL,
  `address_shipping` text NOT NULL,
  `email` varchar(128) NOT NULL,
  `name` varchar(128) NOT NULL,
  `status` varchar(16) NOT NULL,
  `payment_method` varchar(32) NOT NULL,
  `payment_status` varchar(32) NOT NULL,
  `date_created` varchar(64) NOT NULL,
  `is_new` int(1) NOT NULL,
  `sale_percent` varchar(16) NOT NULL,
  `sale_type` varchar(16) NOT NULL,
  `lang` varchar(16) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpdevart_reservations`
--

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

--
-- Table structure for table `wp_wpdevart_themes`
--

DROP TABLE IF EXISTS `wp_wpdevart_themes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wpdevart_themes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(128) NOT NULL,
  `value` longtext NOT NULL,
  `user_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wpdevart_themes`
--

LOCK TABLES `wp_wpdevart_themes` WRITE;
/*!40000 ALTER TABLE `wp_wpdevart_themes` DISABLE KEYS */;
INSERT INTO `wp_wpdevart_themes` VALUES (1,'Theme','{\"title\":\"Theme\",\"date_format\":\"F j, Y\",\"week_days\":\"0\",\"day_start\":\"1\",\"default_year\":\"\",\"default_month\":\"0\",\"cal_animation_type\":\"none\",\"scroll_offset\":\"\",\"show_form\":\"on\",\"type_days_selection\":\"multiple_days\",\"sale_conditions\":{\"count\":[\"\"],\"percent\":[\"\"]},\"min_days\":\"\",\"max_days\":\"\",\"enable_checkinout\":\"on\",\"enable_number_items\":\"on\",\"terms_cond_link\":\"\",\"enable_form_title\":\"on\",\"enable_extras_title\":\"on\",\"legend_enable\":\"on\",\"legend_available_enable\":\"on\",\"legend_available\":\"Available\",\"legend_booked_enable\":\"on\",\"legend_booked\":\"Booked\",\"legend_unavailable_enable\":\"on\",\"legend_unavailable\":\"Unavailable\",\"action_after_submit\":\"stay_on_calendar\",\"message_text\":\"Thanks :)\",\"redirect_url\":\"\",\"custom_css\":\"\",\"currency\":\"USD\",\"currency_pos\":\"after\",\"type_hours_selection\":\"multiple_hours\",\"hours_sale_conditions\":{\"count\":[\"\"],\"percent\":[\"\"]},\"min_hours\":\"\",\"max_hours\":\"\",\"show_hours_info\":\"on\",\"hours\":{\"hour_value\":[\"\"],\"hour_price\":[\"\"],\"hours_marked_price\":[\"\"],\"hours_availability\":[\"available\"],\"hours_number_availability\":[\"\"],\"hour_info\":[\"\"]},\"show_day_info_on_hover\":\"on\",\"days_for_new\":\"30\",\"calendar_max_width\":\"680\",\"calendar_header_font_weight\":\"normal\",\"calendar_header_font_style\":\"normal\",\"calendar_header_padding\":\"10\",\"next_prev_month_size\":\"15\",\"current_month_size\":\"19\",\"current_year_size\":\"19\",\"week_days_font_weight\":\"normal\",\"week_days_font_style\":\"normal\",\"week_days_size\":\"13\",\"day_number_font_weight\":\"normal\",\"day_number_font_style\":\"normal\",\"day_number_size\":\"13\",\"day_availability_font_weight\":\"normal\",\"day_availability_font_style\":\"normal\",\"day_availability_size\":\"13\",\"day_price_font_weight\":\"normal\",\"day_price_font_style\":\"normal\",\"day_price_size\":\"12\",\"days_min_height\":\"65\",\"hours_width\":\"95\",\"hours_height\":\"125\",\"info_font_weight\":\"normal\",\"info_font_style\":\"normal\",\"info_size\":\"13\",\"info_border_radius\":\"\",\"form_title_weight\":\"normal\",\"form_title_style\":\"italic\",\"form_title_size\":\"21\",\"form_labels_weight\":\"normal\",\"form_labels_style\":\"italic\",\"form_labels_size\":\"15\",\"form_fields_weight\":\"normal\",\"form_fields_style\":\"normal\",\"form_fields_size\":\"15\",\"form_submit_weight\":\"normal\",\"form_style_style\":\"normal\",\"reserv_info_weight\":\"normal\",\"reserv_info_style\":\"normal\",\"reserv_info_size\":\"14\",\"widget_day_info_weight\":\"normal\",\"widget_day_info_style\":\"normal\",\"widget_day_info_size\":\"14\",\"load_spinner_color\":\"#464646\",\"calendar_header_bg\":\"#FFFFFF\",\"next_prev_month\":\"#636363\",\"current_month\":\"#636363\",\"current_year\":\"#636363\",\"week_days_bg\":\"#ECECEC\",\"week_days_color\":\"#656565\",\"calendar_bg\":\"#FFFFFF\",\"calendar_border\":\"#ddd\",\"day_bg\":\"#FFFFFF\",\"day_number_bg\":\"#ECECEC\",\"day_color\":\"#464646\",\"day_availability_color\":\"#848484\",\"day_price_color\":\"#848484\",\"available_day_bg\":\"#FFFFFF\",\"available_day_number_bg\":\"#85B70B\",\"available_day_color\":\"#FFFFFF\",\"selected_day_bg\":\"#FFFFFF\",\"selected_day_number_bg\":\"#373740\",\"selected_day_color\":\"#FFFFFF\",\"selected_day_availability_color\":\"#848484\",\"selected_day_price_color\":\"#848484\",\"unavailable_day_bg\":\"#FFFFFF\",\"unavailable_day_number_bg\":\"#464646\",\"unavailable_day_color\":\"#ECECEC\",\"unavailable_day_availability_color\":\"#848484\",\"booked_day_bg\":\"#FFFFFF\",\"booked_day_number_bg\":\"#FD7C93\",\"booked_day_color\":\"#FFFFFF\",\"booked_day_availability_color\":\"#848484\",\"info_icon_color\":\"#FFFFFF\",\"info_bg\":\"#FFFFFF\",\"info_color\":\"#4E4E4E\",\"form_bg\":\"#FDFDFD\",\"form_border\":\"#ddd\",\"form_title_color\":\"#636363\",\"form_title_bg\":\"#FDFDFD\",\"form_labels_color\":\"#636363\",\"form_fields_color\":\"#636363\",\"reserv_info_color\":\"#545454\",\"total_bg\":\"#545454\",\"total_color\":\"#F7F7F7\",\"required_star_color\":\"#FD7C93\",\"submit_button_bg\":\"#FD7C93\",\"submit_button_color\":\"#FFFFFF\",\"error_info_bg\":\"#FFFFFF\",\"error_info_color\":\"#C11212\",\"error_info_border\":\"#C11212\",\"error_info_close_bg\":\"#C11212\",\"error_info_close_color\":\"#FFFFFF\",\"successfully_info_bg\":\"#FFFFFF\",\"successfully_info_color\":\"#7FAD16\",\"successfully_info_border\":\"#7FAD16\",\"successfully_info_close_bg\":\"#7FAD16\",\"successfully_info_close_color\":\"#FFFFFF\",\"widget_day_info_bg\":\"#FFFFFF\",\"widget_day_info_color\":\"#6B6B6B\",\"widget_day_info_border_color\":\"#C7C7C7\",\"use_phpmailer\":\"on\",\"mail_bg\":\"#f3f3f3\",\"mail_content_bg\":\"#FFFFFF\",\"mail_color\":\"#5A5A5A\",\"mail_header_img\":\"\",\"mail_footer_text\":\"Copyrightu00a9 2016\",\"mail_footer_text_color\":\"#a7a7a7\",\"notify_admin_on_book\":\"on\",\"notify_admin_on_book_to\":\"info@info.com\",\"notify_admin_on_book_from\":\"[useremail]\",\"notify_admin_on_book_fromname\":\"\",\"notify_admin_on_book_subject\":\"You received a booking request.\",\"notify_admin_on_book_content\":\"You received a payment. For more details, visit: [moderatelink]\",\"notify_admin_on_approved\":\"on\",\"notify_admin_on_approved_to\":\"info@info.com\",\"notify_admin_on_approved_from\":\"[useremail]\",\"notify_admin_on_approved_fromname\":\"\",\"notify_admin_on_approved_subject\":\"Booking request has been approved.\",\"notify_admin_on_approved_content\":\"Booking request has been approved. For more details, visit: [moderatelink]\",\"notify_admin_paypal_to\":\"sadas@dsd.sd\",\"notify_admin_paypal_from\":\"[useremail]\",\"notify_admin_paypal_fromname\":\"\",\"notify_admin_paypal_subject\":\"You received a booking request.\",\"notify_admin_paypal_content\":\"You received a payment. For more details, visit: [moderatelink]\",\"notify_user_on_book\":\"on\",\"notify_user_on_book_from\":\"info@info.com\",\"notify_user_on_book_fromname\":\"\",\"notify_user_on_book_subject\":\"Your booking request has been sent.\",\"notify_user_on_book_content\":\"Your booking request has been sent.\",\"notify_user_on_approved\":\"on\",\"notify_user_on_approved_from\":\"info@info.com\",\"notify_user_on_approved_fromname\":\"\",\"notify_user_on_approved_subject\":\"Your booking request has been approved\",\"notify_user_on_approved_content\":\"Your booking request has been approved\",\"notify_user_canceled\":\"on\",\"notify_user_canceled_from\":\"info@info.com\",\"notify_user_canceled_fromname\":\"\",\"notify_user_canceled_subject\":\"Your booking request has been canceled\",\"notify_user_canceled_content\":\"Your booking request has been canceled\",\"notify_user_deleted_from\":\"info@info.com\",\"notify_user_deleted_fromname\":\"\",\"notify_user_deleted_subject\":\"Your booking request has been rejected\",\"notify_user_deleted_content\":\"\",\"notify_user_paypal_from\":\"info@info.com\",\"notify_user_paypal_fromname\":\"\",\"notify_user_paypal_subject\":\"Thank you for your purchase\",\"notify_user_paypal_content\":\"Your order has been received. Thank you for your purchase! You will receive an order confirmation by email.\",\"notify_user_paypal_failed_from\":\"info@info.com\",\"notify_user_paypal_failed_fromname\":\"\",\"notify_user_paypal_failed_subject\":\"Payment failed\",\"notify_user_paypal_failed_content\":\"Your payment failed.\",\"for_available\":\"available\",\"for_booked\":\"Booked\",\"for_unavailable\":\"Unavailable\",\"for_check_in\":\"Check in\",\"for_check_out\":\"Check out\",\"for_date\":\"Date\",\"for_no_hour\":\"No hour available.\",\"for_start_hour\":\"Start hour\",\"for_end_hour\":\"End hour\",\"for_hour\":\"Hour\",\"for_item_count\":\"Item count\",\"for_termscond\":\"I accept to agree to the Terms & Conditions.\",\"for_reservation\":\"Reservation\",\"for_select_days\":\"Please select the days from calendar.\",\"for_price\":\"Price\",\"for_total\":\"Total\",\"for_submit_button\":\"Book Now\",\"for_request_successfully_sent\":\"Your request has been successfully sent. Please wait for approval.\",\"for_request_successfully_received\":\"Your request has been successfully received. We are waiting you!\",\"for_error_single\":\"There are no services available for this day.\",\"for_error_multi\":\"There are no services available for the period you selected.\",\"for_night\":\"You must select at least two days\",\"for_min\":\"You must select at least [min] days\",\"for_max\":\"You must select  lower than [max] days\",\"for_min_hour\":\"You must select at least [min] hours\",\"for_max_hour\":\"You must select  lower than [max] hours\",\"for_capcha\":\"Was not verified by recaptcha\",\"for_pay_in_cash\":\"Pay in cash\",\"for_paypal\":\"Pay with PayPal\",\"for_shipping_info\":\"Same as billing info\",\"for_notify_admin_on_book\":\"Email on book to administrator does not send\",\"for_notify_admin_on_approved\":\"Email on approved to administrator does not send\",\"for_notify_user_on_book\":\"Email on book to user does not send\",\"for_notify_user_on_approved\":\"Email on approved to user does not send\",\"for_notify_user_canceled\":\"Email on canceled to user does not send\",\"for_notify_user_deleted\":\"Email on delete to user does not send\",\"billing_address_form\":\"1\",\"shipping_address_form\":\"1\",\"redirect_url_successful\":\"\",\"tax\":\"\",\"payment_mode\":\"sandbox\",\"paypal_email\":\"\",\"paypal_image\":\"http://edssnow.com/wp-content/plugins/booking-calendar//css/images/paynow.png\",\"button_action\":\"apply\",\"task\":\"save\",\"id\":\"0\"}',1);
/*!40000 ALTER TABLE `wp_wpdevart_themes` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2021-04-13 23:48:57